L
lvzhong
Unregistered / Unconfirmed
GUEST, unregistred user!
小第有这样一个函数
public static String ReadFile(String FileName)
{
String retu;
RandomAccessFile file1;
try{
file1 = new RandomAccessFile( FileName,"r");
retu=file1.readLine();
}catch (IOException e){
e.printStackTrace();
retu="";
}
return(retu);
}
用这个函数读文件时,读如的英文是正确的,但读如的中文是乱码。
请高手帮我改改。
public static String ReadFile(String FileName)
{
String retu;
RandomAccessFile file1;
try{
file1 = new RandomAccessFile( FileName,"r");
retu=file1.readLine();
}catch (IOException e){
e.printStackTrace();
retu="";
}
return(retu);
}
用这个函数读文件时,读如的英文是正确的,但读如的中文是乱码。
请高手帮我改改。