`
zwhc
  • 浏览: 264046 次
  • 性别: Icon_minigender_1
  • 来自: 福州
社区版块
存档分类
最新评论

java char

    博客分类:
  • java
阅读更多
刚才简单研究了一下 char 。

比想象的复杂得多。主要应该是要看 java.lang.StringCoding 这个类。

现在没时间研究下去,先存个档。


package com;

import java.io.UnsupportedEncodingException;
//import java.lang.StringCoding.CharsetSE;
//import java.lang.StringCoding.ConverterSE;
//import java.lang.StringCoding.StringEncoder;
import java.nio.charset.Charset;
import java.nio.charset.IllegalCharsetNameException;

import sun.io.CharToByteConverter;
import sun.io.Converters;
import sun.misc.MessageUtils;

/**
 * char 原来还有这么多名堂
 * 有空再研究一下。
 * 
 
java.lang.StringCoding
import java.lang.StringCoding.CharsetSE;
import java.lang.StringCoding.ConverterSE;
import java.lang.StringCoding.StringEncoder;

 * 
 * @author zch
 * @date Apr 24, 2012
 *
 */

public class TestChar {
	private static void test01() {
		for (int i = 0; i < 1024; i++) {
			if ((char) i == '?')
				System.out.println(i + ":" + (char) i);
		}
	}

	private static void test02() {
		StringBuffer sb = new StringBuffer();
		for (int i = 0; i < 1024; i++) {
			sb.append((char) i);
		}
		System.out.println(sb);
		// for(int i=0; i<sb.length(); i++)
		// {
		// System.out.println((int)sb.charAt(i) + ":" + sb.charAt(i));
		// }
		byte[] buf = sb.toString().getBytes();
		for (int i = 0; i < buf.length; i++) {
			System.out.println(i + ":" + buf[i]);
		}
		// String s = new String(buf);
		// for(int i=0; i<sb.length(); i++)
		// {
		// System.out.println((int)s.charAt(i) + ":" + s.charAt(i));
		// }

	}

//	static byte[] encode(String charsetName, char[] ca, int off, int len)
//			throws UnsupportedEncodingException {
//		StringEncoder se = (StringEncoder) deref(encoder);
//		String csn = (charsetName == null) ? "ISO-8859-1" : charsetName;
//		if ((se == null)
//				|| !(csn.equals(se.requestedCharsetName()) || csn.equals(se
//						.charsetName()))) {
//			se = null;
//			try {
//				Charset cs = lookupCharset(csn);
//				if (cs != null)
//					se = new CharsetSE(cs, csn);
//			} catch (IllegalCharsetNameException x) {
//				// FALL THROUGH to CharToByteConverter, for compatibility
//			}
//			if (se == null)
//				se = new ConverterSE(CharToByteConverter.getConverter(csn), csn);
//			set(encoder, se);
//		}
//		return se.encode(ca, off, len);
//	}
//
//	static byte[] encode(char[] ca, int off, int len) {
//		String csn = Converters.getDefaultEncodingName();
//		try {
//			return encode(csn, ca, off, len);
//		} catch (UnsupportedEncodingException x) {
//			Converters.resetDefaultEncodingName();
//			warnUnsupportedCharset(csn);
//		}
//		try {
//			return encode("ISO-8859-1", ca, off, len);
//		} catch (UnsupportedEncodingException x) {
//			// If this code is hit during VM initialization, MessageUtils is
//			// the only way we will be able to get any kind of error message.
//			MessageUtils.err("ISO-8859-1 charset not available: "
//					+ x.toString());
//			// If we can not find ISO-8859-1 (a required encoding) then things
//			// are seriously wrong with the installation.
//			System.exit(1);
//			return null;
//		}
//	}

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// for(int i=0; i<65536; i++)

		test02();
	}
}


0
2
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics