Java 中 InputStream 流的多次读取在读取 InputStream 的时候,其实内部是有个指针,它指示每次
在读取 InputStream 的时候,其实内部是有个指针,它指示每次读取之后下一次要读取的起始位置,当第一次读完的时候,指针已经指到最后了,当再次读取的时候,自然是读不到数据的。
1. 使用 StringBuilder 中转
public static void main(String[] args) throws IOException {
String filePath = "C:\\Users\\wangb\\Desktop\\test.txt";
// 使用Files.newInputStream方法获取InputStream
InputStream is = Files.newInputStream(Paths.get(filePath));
// builder 保留读到的数据
StringBuilder builder = new StringBuilder();
byte[] buffer = new byte[1024];
int len;
while ((len = is.read(buffer)) != -1) {
builder.append(new String(buffer, 0, len));
}
System.out.println("-------第一次需要InputStream,那么就创建一个-------");
InputStream isOne = new ByteArrayInputStream(builder.toString().getBytes());
// 下面是测试新的InputStream到底是否有数据
byte[] bufferOne = new byte[1024];
int lenOne;
while ((lenOne = isOne.read(bufferOne)) != -1) {
System.out.println(new String(bufferOne, 0, lenOne));
}
System.out.println("-------第二次需要InputStream,那么就再创建一个-------");
InputStream isTwo = new ByteArrayInputStream(builder.toString().getBytes());
// 下面是测试新的InputStream到底是否有数据
byte[] bufferTwo = new byte[1024];
int lenTwo;
while ((lenTwo = isTwo.read(bufferTwo)) != -1) {
System.out.println(new String(bufferTwo, 0, lenTwo));
}
is.close();
isOne.close();
isTwo.close();
}
2. 使用 ByteArrayOutputStream 中转
public static void main(String[] args) throws IOException {
String filePath = "C:\\Users\\wangb\\Desktop\\test.txt";
// 使用Files.newInputStream方法获取InputStream
InputStream is = Files.newInputStream(Paths.get(filePath));
ByteArrayOutputStream byteArrayOut = new ByteArrayOutputStream();
int len;
byte[] buffer = new byte[1024];
while ((len = is.read(buffer)) != -1) {
byteArrayOut.write(buffer, 0, len);
}
System.out.println("-------第一次需要InputStream,那么就创建一个-------");
InputStream isOne = new ByteArrayInputStream(byteArrayOut.toByteArray());
// 下面是测试新的InputStream到底是否有数据
byte[] bufferOne = new byte[1024];
int lenOne;
while ((lenOne = isOne.read(bufferOne)) != -1) {
System.out.println(new String(bufferOne, 0, lenOne));
}
System.out.println("-------第二次需要InputStream,那么就再创建一个-------");
InputStream isTwo = new ByteArrayInputStream(byteArrayOut.toByteArray());
// 下面是测试新的InputStream到底是否有数据
byte[] bufferTwo = new byte[1024];
int lenTwo;
while ((lenTwo = isTwo.read(bufferTwo)) != -1) {
System.out.println(new String(bufferTwo, 0, lenTwo));
}
is.close();
isOne.close();
isTwo.close();
}
3. 使用 ByteArrayInputStream 重置指针
public static void main(String[] args) throws IOException {
String filePath = "C:\\Users\\wangb\\Desktop\\test.txt";
// 使用Files.newInputStream方法获取InputStream
InputStream is = Files.newInputStream(Paths.get(filePath));
ByteArrayOutputStream byteArrayOut = new ByteArrayOutputStream();
int len;
byte[] buffer = new byte[1024];
while ((len = is.read(buffer)) != -1) {
byteArrayOut.write(buffer, 0, len);
}
// 创建一个新的 ByteArrayInputStream 对象,包含复制的数据
ByteArrayInputStream byteArrayInputStream = new ByteArrayInputStream(byteArrayOut.toByteArray());
System.out.println("-------第一次使用-------");
// 下面是测试新的InputStream到底是否有数据
byte[] bufferOne = new byte[1024];
int lenOne;
while ((lenOne = byteArrayInputStream.read(bufferOne)) != -1) {
System.out.println(new String(bufferOne, 0, lenOne));
}
// 重置 ByteArrayInputStream 的指针到开头
byteArrayInputStream.reset();
System.out.println("-------第二次使用-------");
// 下面是测试新的InputStream到底是否有数据
byte[] bufferTwo = new byte[1024];
int lenTwo;
while ((lenTwo = byteArrayInputStream.read(bufferTwo)) != -1) {
System.out.println(new String(bufferTwo, 0, lenTwo));
}
is.close();
byteArrayInputStream.close();
}
转载自:https://juejin.cn/post/7413002404303093814