在java中用CharBufer的toString()方法在屏幕上打印时出现???????,而不是我想要得,请高手指点,这个怎么解决,这是不是就是人们说的乱码呀!!!
代码如下
import java.io.*;
import java.nio.*;
import java.nio.channels.*;
public class ReadAString{
public static void main(String[] args){
File fl=new File("F:/test/dd.txt");
FileInputStream fis=null;
ByteBuffer bb=ByteBuffer.allocate(1024);
try{
fis=new FileInputStream(fl);
FileChannel fc=fis.getChannel();
while(fc.read(bb)!=-1)
{
System.out.println(((ByteBuffer)(bb.flip())).asCharBuffer().toString());
bb.clear();
}
fc.close();
}catch(IOException e)
{
e.printStackTrace();
System.exit(1);
}
}
}
我的F:/test/dd.txt 中写的是 成功了 ,呵呵,java