本帖最后由 杨增坤 于 2013-9-5 20:29 编辑
这是我写的一个读文件的代码:- import java.io.*;
- public class ReadFile {
- public static void main(String[] args) throws Exception{
- File file = new File("./exercise.txt");
- InputStream input = new FileInputStream(file);
- byte[] b = new byte[5];
- while(input.read(b) != -1){
- System.out.print(new String(b));
- }
- input.close();
- }
- }
复制代码 这个代码能读英文内容,但是读中文内容的时候就会出现乱码,求解释以及解决办法。
|