当前位置: 技术问答>java相关
如何读取文件中的中文,并显示在Label或TextField里?
来源: 互联网 发布时间:2015-02-18
本文导语: | //支持中文编码 private String getStr(String str) throws Exception { String temp_p=str; byte[] temp_t=temp_p.getBytes("ISO8859_1"); String temp=new String(temp_t); return temp; } 将从文件流中读出的字符串作如上的转换,试试看,...
|
//支持中文编码
private String getStr(String str) throws Exception
{
String temp_p=str;
byte[] temp_t=temp_p.getBytes("ISO8859_1");
String temp=new String(temp_t);
return temp;
}
将从文件流中读出的字符串作如上的转换,试试看,然后再将显示在指定的框里。
private String getStr(String str) throws Exception
{
String temp_p=str;
byte[] temp_t=temp_p.getBytes("ISO8859_1");
String temp=new String(temp_t);
return temp;
}
将从文件流中读出的字符串作如上的转换,试试看,然后再将显示在指定的框里。