xyang
posts - 19, comments - 1, trackbacks - 0, articles - 0
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
test code
Posted on 2006-09-28 13:42
xyang
阅读(211)
评论(0)
编辑
收藏
1
public
class
hello
{
2
public
static
void
main(String a[])
throws
java.io.IOException
{
3
String tmp
=
"
中文
"
;
4
printHex(tmp,
"
Unicode
"
);
5
printHex(tmp,
"
GB2312
"
);
6
printHex(tmp,
"
ISO8859-1
"
);
7
printHex(tmp,
"
UTF-8
"
);
8
}
9
10
private
static
void
printHex(String str,String charset)
throws
java.io.IOException
{
11
byte
[] buf
=
str.getBytes(charset);
12
for
(
int
i
=
0
; i
<
buf.length; i
++
)
{
13
System.out.print(Integer.toHexString(buf[i]));
14
System.out.print(
"
"
);
15
}
16
System.out.println(
"
"
);
17
}
18
19
}
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
Powered by:
BlogJava
Copyright © xyang
日历
<
2006年9月
>
日
一
二
三
四
五
六
27
28
29
30
31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
1
2
3
4
5
6
7
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(1)
给我留言
查看公开留言
查看私人留言
随笔档案
2006年10月 (5)
2006年9月 (14)
常用资料
unicode中文
vqq
正则
搜索
最新评论
1. re: 使用xmlhttp和Java session监听改善站内消息系统( 转)
好!!!!
--生活快乐
阅读排行榜
1. 使用xmlhttp和Java session监听改善站内消息系统( 转)(1409)
2. HashMap与Hashtable的区别(912)
3. 算法 常用(757)
4. 字符编码在编程中的问题(668)
5. Open Source Portal Servers Written in Java (661)
评论排行榜
1. 使用xmlhttp和Java session监听改善站内消息系统( 转)(1)
2. 计算机常用英语(0)
3. HashMap与Hashtable的区别(0)
4. test code(0)
5. 字符编码(0)