java怎么把UTF-8字符转化成unicode

Filef=newFile("test.txt");try{FileReaderfr=newFileReader(f);BufferedReaderbr=newBuffe... File f = new File("test.txt");
try {
FileReader fr = new FileReader(f);
BufferedReader br = new BufferedReader(fr);

String str;
while ((str = br.readLine()) != null) {
String utf8 = new String(str.getBytes( "UTF-8"));
String unicode = new String(utf8.getBytes(),"UTF-8");
System.out.println(unicode);
label.setText(label.getText()+ "\n" + unicode);

}
} catch (FileNotFoundException e) {
e.printStackTrace();
}

test.txt是UTF-8格式的,里面的内容是
医疗

一二
但是转化后却是乱码,直接读取也是乱码
展开
 我来答
匿名用户
2015-04-06
展开全部
我哥知道 vvvvv
追问
- -!
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
kaixingui2012
2015-04-06 · TA获得超过4.2万个赞
知道大有可为答主
回答量:1.4万
采纳率:81%
帮助的人:6433万
展开全部
直接读取并显示不成吗?为什么要转换?
追问
- -!你没看懂么,我的txt是UTF-8的,java是unicode,直接读取汉字是不行的
追答
你试一下以下代码,看显示出来的是正常的吗?
import java.io.* ;
public class utf8 {
public static void main( String []args )
{

System.out.println("hello");
prt_file( "utf8fle.txt", "utf8" );
}
static void prt_file( String file, String encoding )
{
BufferedReader br = null;  
         try{  
              br = new BufferedReader(new InputStreamReader(new FileInputStream(file),encoding));  
             String line = null;
             while( (line=br.readLine()) != null )
    System.out.print(line);
} catch( Exception e )
{
e.printStackTrace();

}
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式