当前位置: 技术问答>java相关
applet的中文输出问题
来源: 互联网 发布时间:2015-04-09
本文导语: 我打开一个中文文件能正常处理,但没有能正常显示中文,这是什么原因? URL u = new URL(getCodeBase(), tFile); u.openConnection(); u.getContent(); java.io.I...
我打开一个中文文件能正常处理,但没有能正常显示中文,这是什么原因?
URL u = new URL(getCodeBase(), tFile);
u.openConnection();
u.getContent();
java.io.InputStream in = u.openStream();
DataInputStream datainStream = new DataInputStream(in);
while((sLine = datainStream.readLine()) != null)
URL u = new URL(getCodeBase(), tFile);
u.openConnection();
u.getContent();
java.io.InputStream in = u.openStream();
DataInputStream datainStream = new DataInputStream(in);
while((sLine = datainStream.readLine()) != null)
|
sLine = getstr(sLine);
private String getstr(String d )
{
try{
byte [] tmp = d.toString().getBytes("ISO8859-1");
String r = new String(tmp);
return r;
}catch(Exception ee){
System.out.print(ee.toString());
return "";
}
}
private String getstr(String d )
{
try{
byte [] tmp = d.toString().getBytes("ISO8859-1");
String r = new String(tmp);
return r;
}catch(Exception ee){
System.out.print(ee.toString());
return "";
}
}
|
编译你的程序时加-encoding GBK 参数
|
对了 jb6自带的telnet的例程也有中文的问题 怎么解决