首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > J2SE开发 >

啊java编码有关问题

2013-10-10 
求助啊,,,java编码问题读取文件CharsetDemo_003.txt内容,保存格式是UTF-8,内容为欢迎光临welcome为什么输

求助啊,,,java编码问题
读取文件CharsetDemo_003.txt内容,保存格式是UTF-8,内容为
欢迎光临welcome

为什么输出结果为
?欢迎光临welcome

import java.io.*;

public class CharsetDemo_003 {
public static void main(String args[]) throws IOException {
FileInputStream in = null;
try {
String currentCharset = "utf-8";
File file=new File("CharsetDemo_003.txt");   
int size = (int) file.length();
byte[] b = new byte[size];

in = new FileInputStream(file);
in.read(b);

System.out.println("1 --以下显示明文: ");
String decoding = new String(b, currentCharset); // 字符解码
System.out.println(decoding);

System.out.println("\n\n2 --以下显示乱码:");
currentCharset = "gbk";
decoding = new String(b, currentCharset); // 字符解码
System.out.println(decoding);

} finally {
if (in != null)
in.close();
}
}
} java
[解决办法]
用Ultraedit或Notepad++等编辑器,把文件编码保存为UTF-8 without BOM再试试。

热点排行