亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? stringregressiontest.java

?? 用于JAVA數據庫連接.解壓就可用,方便得很
?? JAVA
?? 第 1 頁 / 共 2 頁
字號:
/* Copyright (C) 2002-2004 MySQL AB This program is free software; you can redistribute it and/or modify it under the terms of version 2 of the GNU General Public License as  published by the Free Software Foundation. There are special exceptions to the terms and conditions of the GPL  as it is applied to this software. View the full text of the  exception in file EXCEPTIONS-CONNECTOR-J in the directory of this  software distribution. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package testsuite.regression;import java.io.ByteArrayOutputStream;import java.io.PrintStream;import java.sql.Clob;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.Statement;import java.util.Properties;import testsuite.BaseTestCase;import com.mysql.jdbc.CharsetMapping;import com.mysql.jdbc.StringUtils;/** * Tests for regressions of bugs in String handling in the driver. *  * @author Mark Matthews * @version StringRegressionTest.java,v 1.1 2002/11/04 14:58:25 mark_matthews *          Exp */public class StringRegressionTest extends BaseTestCase {	/**	 * Creates a new StringTest object.	 * 	 * @param name	 *            DOCUMENT ME!	 */	public StringRegressionTest(String name) {		super(name);	}	/**	 * Runs all test cases in this test suite	 * 	 * @param args	 */	public static void main(String[] args) {		junit.textui.TestRunner.run(StringRegressionTest.class);	}	/**	 * Tests character conversion bug.	 * 	 * @throws Exception	 *             if there is an internal error (which is a bug).	 */	public void testAsciiCharConversion() throws Exception {		byte[] buf = new byte[10];		buf[0] = (byte) '?';		buf[1] = (byte) 'S';		buf[2] = (byte) 't';		buf[3] = (byte) 'a';		buf[4] = (byte) 't';		buf[5] = (byte) 'e';		buf[6] = (byte) '-';		buf[7] = (byte) 'b';		buf[8] = (byte) 'o';		buf[9] = (byte) 't';		String testString = "?State-bot";		String convertedString = StringUtils.toAsciiString(buf);		for (int i = 0; i < convertedString.length(); i++) {			System.out.println((byte) convertedString.charAt(i));		}		assertTrue("Converted string != test string", testString				.equals(convertedString));	}	/**	 * Tests fix for BUG#4010 -- GBK encoding getting escaped doubly when	 * database default character set is GBK. Requires version older than 4.1.0	 * and server set to default character set of 'gbk' to run.	 * 	 * @throws Exception	 *             if the test fails.	 */	public void testBug4010() throws Exception {		if (!versionMeetsMinimum(4, 1)) {			if ("GBK".equalsIgnoreCase(getMysqlVariable("character_set"))) {				String origString = "\u603d";				Properties props = new Properties();				props.put("useUnicode", "true");				props.put("characterEncoding", "GBK");				Connection unicodeConn = getConnectionWithProps(props);				Statement unicodeStmt = unicodeConn.createStatement();				PreparedStatement unicodePstmt = unicodeConn						.prepareStatement("INSERT INTO testBug4010 VALUES (?)");				try {					unicodeStmt							.executeUpdate("DROP TABLE IF EXISTS testBug4010");					unicodeStmt							.executeUpdate("CREATE TABLE testBug4010 (field1 varchar(10))");					unicodePstmt.setString(1, origString);					unicodePstmt.executeUpdate();					this.rs = unicodeStmt							.executeQuery("SELECT * FROM testBug4010");					assertTrue(this.rs.next());					String stringFromDb = this.rs.getString(1);					assertTrue("Retrieved string != sent string", origString							.equals(stringFromDb));				} finally {					unicodeStmt							.executeUpdate("DROP TABLE IF EXISTS testBug4010");					unicodeStmt.close();					unicodePstmt.close();					unicodeConn.close();				}			} else {				System.err						.println("WARN: Test not valid for servers not running GBK encoding");			}		} else {			System.err					.println("WARN: Test not valid for MySQL version > 4.1.0, skipping");		}	}	/**	 * Tests for regression of encoding forced by user, reported by Jive	 * Software	 * 	 * @throws Exception	 *             when encoding is not supported (which is a bug)	 */	public void testEncodingRegression() throws Exception {		Properties props = new Properties();		props.put("characterEncoding", "UTF-8");		props.put("useUnicode", "true");		DriverManager.getConnection(dbUrl, props).close();	}	/**	 * Tests fix for BUG#879	 * 	 * @throws Exception	 *             if the bug resurfaces.	 */	public void testEscapeSJISDoubleEscapeBug() throws Exception {		if (!isRunningOnJdk131()) {			String testString = "'It\\'s a boy!'";			byte[] testStringAsBytes = testString.getBytes("SJIS");			byte[] escapedStringBytes = StringUtils					.escapeEasternUnicodeByteStream(testStringAsBytes,							testString, 0, testString.length());			String escapedString = new String(escapedStringBytes, "SJIS");			assertTrue(testString.equals(escapedString));			byte[] origByteStream = new byte[] { (byte) 0x95, (byte) 0x5c,					(byte) 0x8e, (byte) 0x96, (byte) 0x5c, (byte) 0x62,					(byte) 0x5c };			String origString = "\u955c\u8e96\u5c62\\";			byte[] newByteStream = StringUtils.escapeEasternUnicodeByteStream(					origByteStream, origString, 0, origString.length());			assertTrue((newByteStream.length == (origByteStream.length + 2))					&& (newByteStream[1] == 0x5c) && (newByteStream[2] == 0x5c)					&& (newByteStream[5] == 0x5c) && (newByteStream[6] == 0x5c));			origByteStream = new byte[] { (byte) 0x8d, (byte) 0xb2,					(byte) 0x93, (byte) 0x91, (byte) 0x81, (byte) 0x40,					(byte) 0x8c, (byte) 0x5c };			testString = new String(origByteStream, "SJIS");			Properties connProps = new Properties();			connProps.put("useUnicode", "true");			connProps.put("characterEncoding", "sjis");			Connection sjisConn = getConnectionWithProps(connProps);			Statement sjisStmt = sjisConn.createStatement();			try {				sjisStmt						.executeUpdate("DROP TABLE IF EXISTS doubleEscapeSJISTest");				sjisStmt						.executeUpdate("CREATE TABLE doubleEscapeSJISTest (field1 BLOB)");				PreparedStatement sjisPStmt = sjisConn						.prepareStatement("INSERT INTO doubleEscapeSJISTest VALUES (?)");				sjisPStmt.setString(1, testString);				sjisPStmt.executeUpdate();				this.rs = sjisStmt						.executeQuery("SELECT * FROM doubleEscapeSJISTest");				this.rs.next();				String retrString = this.rs.getString(1);				System.out.println(retrString.equals(testString));			} finally {				sjisStmt						.executeUpdate("DROP TABLE IF EXISTS doubleEscapeSJISTest");			}		}	}	/**	 * DOCUMENT ME!	 * 	 * @throws Exception	 *             DOCUMENT ME!	 */	public void testGreekUtf8411() throws Exception {		if (versionMeetsMinimum(4, 1)) {			try {				Properties newProps = new Properties();				newProps.put("useUnicode", "true");				newProps.put("characterEncoding", "UTF-8");				Connection utf8Conn = this.getConnectionWithProps(newProps);				Statement utfStmt = utf8Conn.createStatement();				utfStmt.executeUpdate("DROP TABLE IF EXISTS greekunicode");				utfStmt						.executeUpdate("CREATE TABLE greekunicode(ID INTEGER NOT NULL "								+ " AUTO_INCREMENT,UpperCase VARCHAR (30),LowerCase VARCHAR (30),Accented "								+ " VARCHAR (30),Special VARCHAR (30),PRIMARY KEY(ID)) TYPE = InnoDB, DEFAULT "								+ "CHARACTER SET utf8");				String upper = "\u0394\u930F\u039A\u0399\u039C\u0397";				String lower = "\u03B4\u03BF\u03BA\u03B9\u03BC\u03B7";				String accented = "\u03B4\u03CC\u03BA\u03AF\u03BC\u03AE";				String special = "\u037E\u03C2\u03B0";				utfStmt.executeUpdate("INSERT INTO greekunicode VALUES "						+ "('1','" + upper + "','" + lower + "','" + accented						+ "','" + special + "')");				this.rs = utfStmt						.executeQuery("SELECT UpperCase, LowerCase, Accented, Special from greekunicode");				this.rs.next();				assertTrue(upper.equals(this.rs.getString(1)));				assertTrue(lower.equals(this.rs.getString(2)));				assertTrue(accented.equals(this.rs.getString(3)));				assertTrue(special.equals(this.rs.getString(4)));			} finally {				this.stmt.executeUpdate("DROP TABLE IF EXISTS greekunicode");			}		}	}	/**	 * Tests that 'latin1' character conversion works correctly.	 * 	 * @throws Exception	 *             if any errors occur	 */	public void testLatin1Encoding() throws Exception {		char[] latin1Charset = { 0x0000, 0x0001, 0x0002, 0x0003, 0x0004,				0x0005, 0x0006, 0x0007, 0x0008, 0x0009, 0x000A, 0x000B, 0x000C,				0x000D, 0x000E, 0x000F, 0x0010, 0x0011, 0x0012, 0x0013, 0x0014,				0x0015, 0x0016, 0x0017, 0x0018, 0x0019, 0x001A, 0x001B, 0x001C,				0x001D, 0x001E, 0x001F, 0x0020, 0x0021, 0x0022, 0x0023, 0x0024,				0x0025, 0x0026, 0x0027, 0x0028, 0x0029, 0x002A, 0x002B, 0x002C,				0x002D, 0x002E, 0x002F, 0x0030, 0x0031, 0x0032, 0x0033, 0x0034,				0x0035, 0x0036, 0x0037, 0x0038, 0x0039, 0x003A, 0x003B, 0x003C,				0x003D, 0x003E, 0x003F, 0x0040, 0x0041, 0x0042, 0x0043, 0x0044,				0x0045, 0x0046, 0x0047, 0x0048, 0x0049, 0x004A, 0x004B, 0x004C,				0x004D, 0x004E, 0x004F, 0x0050, 0x0051, 0x0052, 0x0053, 0x0054,				0x0055, 0x0056, 0x0057, 0x0058, 0x0059, 0x005A, 0x005B, 0x005C,				0x005D, 0x005E, 0x005F, 0x0060, 0x0061, 0x0062, 0x0063, 0x0064,				0x0065, 0x0066, 0x0067, 0x0068, 0x0069, 0x006A, 0x006B, 0x006C,				0x006D, 0x006E, 0x006F, 0x0070, 0x0071, 0x0072, 0x0073, 0x0074,				0x0075, 0x0076, 0x0077, 0x0078, 0x0079, 0x007A, 0x007B, 0x007C,				0x007D, 0x007E, 0x007F, 0x0080, 0x0081, 0x0082, 0x0083, 0x0084,				0x0085, 0x0086, 0x0087, 0x0088, 0x0089, 0x008A, 0x008B, 0x008C,				0x008D, 0x008E, 0x008F, 0x0090, 0x0091, 0x0092, 0x0093, 0x0094,				0x0095, 0x0096, 0x0097, 0x0098, 0x0099, 0x009A, 0x009B, 0x009C,				0x009D, 0x009E, 0x009F, 0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4,				0x00A5, 0x00A6, 0x00A7, 0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC,				0x00AD, 0x00AE, 0x00AF, 0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4,				0x00B5, 0x00B6, 0x00B7, 0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC,				0x00BD, 0x00BE, 0x00BF, 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4,				0x00C5, 0x00C6, 0x00C7, 0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC,				0x00CD, 0x00CE, 0x00CF, 0x00D0, 0x00D1, 0x00D2, 0x00D3, 0x00D4,				0x00D5, 0x00D6, 0x00D7, 0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC,				0x00DD, 0x00DE, 0x00DF, 0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4,				0x00E5, 0x00E6, 0x00E7, 0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC,				0x00ED, 0x00EE, 0x00EF, 0x00F0, 0x00F1, 0x00F2, 0x00F3, 0x00F4,				0x00F5, 0x00F6, 0x00F7, 0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC,				0x00FD, 0x00FE, 0x00FF };		String latin1String = new String(latin1Charset);		PreparedStatement pStmt = null;		try {			this.stmt.executeUpdate("DROP TABLE IF EXISTS latin1RegressTest");			this.stmt					.executeUpdate("CREATE TABLE latin1RegressTest (stringField TEXT)");			pStmt = this.conn					.prepareStatement("INSERT INTO latin1RegressTest VALUES (?)");			pStmt.setString(1, latin1String);			pStmt.executeUpdate();			((com.mysql.jdbc.Connection) this.conn).setTraceProtocol(true);			this.rs = this.stmt.executeQuery("SELECT * FROM latin1RegressTest");			((com.mysql.jdbc.Connection) this.conn).setTraceProtocol(false);			this.rs.next();			String retrievedString = this.rs.getString(1);			System.out.println(latin1String);			System.out.println(retrievedString);			if (!retrievedString.equals(latin1String)) {				int stringLength = Math.min(retrievedString.length(),						latin1String.length());				for (int i = 0; i < stringLength; i++) {					char rChar = retrievedString.charAt(i);					char origChar = latin1String.charAt(i);					if ((rChar != '?') && (rChar != origChar)) {						fail("characters differ at position "								+ i								+ "'"								+ rChar								+ "' retrieved from database, original char was '"								+ origChar + "'");					}				}			}		} finally {			if (this.rs != null) {				try {					this.rs.close();				} catch (Exception ex) {					// ignore				}			}			if (pStmt != null) {				try {					pStmt.close();				} catch (Exception ex) {					// ignore				}			}			this.stmt.executeUpdate("DROP TABLE IF EXISTS latin1RegressTest");		}	}	/**	 * Tests newline being treated correctly.	 * 	 * @throws Exception	 *             if an error occurs	 */	public void testNewlines() throws Exception {		String newlineStr = "Foo\nBar\n\rBaz";		this.stmt.executeUpdate("DROP TABLE IF EXISTS newlineRegressTest");		this.stmt				.executeUpdate("CREATE TABLE newlineRegressTest (field1 MEDIUMTEXT)");		try {			this.stmt.executeUpdate("INSERT INTO newlineRegressTest VALUES ('"					+ newlineStr + "')");			this.pstmt = this.conn					.prepareStatement("INSERT INTO newlineRegressTest VALUES (?)");			this.pstmt.setString(1, newlineStr);			this.pstmt.executeUpdate();			this.rs = this.stmt					.executeQuery("SELECT * FROM newlineRegressTest");			while (this.rs.next()) {				assertTrue(this.rs.getString(1).equals(newlineStr));			}		} finally {			this.stmt.executeUpdate("DROP TABLE IF EXISTS newlineRegressTest");		}	}	/**	 * Tests that single-byte character conversion works correctly.	 * 	 * @throws Exception	 *             if any errors occur	 */	// TODO: Use Unicode Literal escapes for this, for now, this test is	// broken :(	/*	 * public void testSingleByteConversion() throws Exception {	 * testConversionForString("latin1", "??? ????");	 * testConversionForString("latin1", "Kaarle ??nis Ilmari");	 * testConversionForString("latin1",	 * "??????????????????"); }	 */	/**	 * Tests that the 0x5c escaping works (we didn't use to have this).	 * 	 * @throws Exception	 *             if an error occurs.	 */	public void testSjis5c() throws Exception {		byte[] origByteStream = new byte[] { (byte) 0x95, (byte) 0x5c,				(byte) 0x8e, (byte) 0x96 };		//		// Print the hex values of the string		//		StringBuffer bytesOut = new StringBuffer();		for (int i = 0; i < origByteStream.length; i++) {			bytesOut.append(Integer.toHexString(origByteStream[i] & 255));			bytesOut.append(" ");		}		System.out.println(bytesOut.toString());

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品一区二区三区视频在线观看| 亚洲一区在线视频| 玉米视频成人免费看| 美女被吸乳得到大胸91| 成人黄色av电影| 欧美高清你懂得| 亚洲精品一二三| 国产高清一区日本| 日韩精品中文字幕在线不卡尤物| 自拍偷在线精品自拍偷无码专区| 蜜桃精品视频在线观看| 欧美日本国产视频| 亚洲欧美视频在线观看视频| 国产剧情一区在线| 精品日韩成人av| 日韩精品欧美成人高清一区二区| 在线日韩国产精品| 国产精品精品国产色婷婷| 精品一区二区国语对白| 欧美精品日韩一区| 亚洲成人免费观看| 欧美午夜精品久久久久久超碰| 中文字幕一区二区5566日韩| 狠狠色综合日日| 精品国产自在久精品国产| 日韩在线一区二区| 欧美日韩免费不卡视频一区二区三区| 亚洲日本va午夜在线电影| 床上的激情91.| 国产精品你懂的| 99久久国产综合精品女不卡| 国产日韩av一区| 成人午夜精品一区二区三区| 国产亚洲一本大道中文在线| 精品一区二区三区香蕉蜜桃 | 午夜婷婷国产麻豆精品| 在线观看亚洲一区| 亚洲一区电影777| 欧美麻豆精品久久久久久| 亚洲成人激情自拍| 欧美一区二区三区四区五区| 日精品一区二区| 26uuu欧美| 成人国产亚洲欧美成人综合网| 国产精品美女一区二区| 色诱视频网站一区| 亚洲综合色自拍一区| 91麻豆精品91久久久久同性| 另类小说图片综合网| 精品国产一区二区精华| 国产成人精品1024| 亚洲免费在线视频一区 二区| 在线看日本不卡| 久久av老司机精品网站导航| 久久日韩精品一区二区五区| 成人开心网精品视频| 亚洲综合男人的天堂| 日韩亚洲欧美中文三级| 国产一区福利在线| 亚洲免费观看高清| 日韩女优视频免费观看| 国产成人免费在线观看不卡| 亚洲欧美日韩国产一区二区三区 | www.激情成人| 亚洲一区免费在线观看| 精品国产区一区| 97国产精品videossex| 人禽交欧美网站| 中文字幕av一区二区三区免费看| 日本高清免费不卡视频| 天堂资源在线中文精品| 国产女主播一区| 欧美日韩成人一区二区| 国产91精品久久久久久久网曝门| 亚洲综合一区二区三区| 久久久久国产精品人| 欧美人体做爰大胆视频| 高清免费成人av| 日欧美一区二区| 亚洲精品国产成人久久av盗摄| 日韩一区二区三区视频在线| 91网址在线看| 国产精品亚洲成人| 亚洲成人一二三| 亚洲欧美激情在线| 国产亚洲精品免费| 日韩欧美一区电影| 欧美午夜精品电影| 色综合久久久网| 福利一区二区在线观看| 日韩影院在线观看| 亚洲精品中文在线影院| 久久精品夜夜夜夜久久| 日韩欧美色综合| 欧美日韩亚州综合| 欧美中文字幕一区二区三区亚洲| 成人av在线看| 国产大陆亚洲精品国产| 久久国产尿小便嘘嘘| 亚洲成人精品一区| 亚洲成人av在线电影| 一区二区三区四区不卡在线| 中文字幕精品一区 | 欧美日韩极品在线观看一区| 99视频精品免费视频| 国产精品一卡二| 国产真实乱对白精彩久久| 久久福利视频一区二区| 麻豆91小视频| 九一久久久久久| 久久国产精品99久久久久久老狼| 日韩成人一级大片| 日本成人在线不卡视频| 日韩1区2区3区| 日本不卡高清视频| 激情都市一区二区| 国产麻豆精品在线| 国产成人在线视频网站| 国产精品一区二区黑丝| 成人午夜视频福利| 91一区二区三区在线观看| 97久久超碰国产精品电影| av在线不卡免费看| 色婷婷激情综合| 欧美这里有精品| 欧美日韩国产高清一区二区三区 | 久久久高清一区二区三区| 久久综合久久综合久久| 久久久久久久综合色一本| 久久精品综合网| 亚洲欧美中日韩| 亚洲一区精品在线| 人人超碰91尤物精品国产| 久久精品国产久精国产爱| 高清beeg欧美| 欧美伊人久久久久久午夜久久久久| 欧美视频一区在线| 日韩一区二区三区在线| 久久网站热最新地址| 国产精品视频yy9299一区| 亚洲激情一二三区| 另类综合日韩欧美亚洲| 成人精品一区二区三区中文字幕| 色域天天综合网| 日韩你懂的在线观看| 国产欧美精品一区| 亚洲国产日韩综合久久精品| 精品中文字幕一区二区小辣椒 | 在线播放亚洲一区| 久久久国产精品午夜一区ai换脸| 亚洲女同一区二区| 久久国产免费看| 欧美亚洲一区二区三区四区| 精品欧美久久久| 亚洲精品日韩专区silk| 久久不见久久见中文字幕免费| 97国产精品videossex| 欧美一区二区三区视频| 国产精品国产三级国产aⅴ入口| 亚洲aⅴ怡春院| 91小视频免费观看| 精品欧美一区二区在线观看| 一区二区三区波多野结衣在线观看 | 国产亚洲午夜高清国产拍精品| 亚洲综合色在线| 成人午夜大片免费观看| 337p亚洲精品色噜噜狠狠| 国产精品情趣视频| 久久成人免费日本黄色| 欧美日韩一区在线| 亚洲男女毛片无遮挡| 国产成人在线电影| 日韩美女视频一区二区在线观看| 亚洲人成电影网站色mp4| 国产伦精品一区二区三区免费迷| 欧美日韩高清一区二区不卡 | 极品美女销魂一区二区三区| 欧美三区在线视频| 亚洲欧洲无码一区二区三区| 国产又粗又猛又爽又黄91精品| 欧美精品黑人性xxxx| 亚洲另类在线制服丝袜| 成人免费观看男女羞羞视频| 精品1区2区在线观看| 日韩av电影天堂| 欧美人妖巨大在线| 亚洲一区二区三区在线| 色域天天综合网| 亚洲欧美一区二区三区久本道91| 成人动漫av在线| 国产精品国产三级国产aⅴ中文| 国产成人三级在线观看| 久久精品夜色噜噜亚洲aⅴ| 黄色精品一二区| 26uuu精品一区二区在线观看| 久久精品国产澳门| 久久精子c满五个校花| 国产夫妻精品视频| 国产精品精品国产色婷婷| 91在线视频免费91|