package java基础;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
public class TestIO {
public static void main(String[] args) {
readText();
}
private static void readText() {
FileInputStream in = null;
try {
in = new FileInputStream("D://workspace//learning//src//java基础//myText.txt");
StringBuilder sb = new StringBuilder();
byte[] b = new byte[4096];
// 通过输入管道,把数据读入到内存,重新包装成UTF-8的String,解决中文乱码问题
for (int n; (n = in.read(b)) != -1;) {// InputStream输入管道读取数据到内存,读到最后没数据时返回-1
sb.append(new String(b, 0, n,"UTF-8")); //这里如果UTF-8 不行,就换GBK或GB2312试试
}
System.out.println(sb.toString());
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if(in != null) {
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
myText.txt,放在和当前的java源文件同一个目录即可测试,如果myText.txt文件中有中文,上面的写法解决了中文乱码的问题
InputStream 此抽象类是表示字节输入流的所有类的超类。
我们从输入流中读取数据最常用的方法基本上就是如下 3 个 read() 方法了:
1 、 read () 方法,这个方法 从输入流中读取数据的下一个字节。返回 0 到 255 范围内的 int 字节值。如果因为已经到达流末尾而没有可用的字节,则返回值 -1 。
2 、 read (byte[] b,int off,int len) 方法, 将输入流中最多 len 个数据字节读入 byte 数组。尝试读取 len 个字节,但读取的字节也可能小于该值。以整数形式返回实际读取的字节数。如果因为已经到达流末尾而没有可用的字节,则返回值 -1 。
3 、 read (byte[] b) 方法, 从输入流中读取一定数量的字节,并将其存储在缓冲区数组 b 中。以整数形式返回实际读取的字节数。如果因为已经到达流末尾而没有可用的字节,则返回值 -1 。
String 类构造方法
String(byte[] bytes, int offset, int length,Charset charset)
通过使用指定的 charset 解码指定的 byte 子数组,构造一个新的String
。