Java如何使用InputStream读写文件呢?
在Java中可使用Reader
或Stream
读取文件。Reader
适用于文本数据,Stream
适用于二进制数据
FileInputStream
用于打开流以从文件中读取数据 下文讲述InputStream操作文件的相关示例分享,如下所示:
例:
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
public class testClass {
public static void main(String[] args) {
try {
InputStream is = new FileInputStream("D:/tmp/java265-1.txt");
OutputStream os = new FileOutputStream("D:/tmp/java265-2.txt");
byte[] buffer = new byte[1024];
int bytesRead;
//读取到缓冲区
while((bytesRead = is.read(buffer)) !=-1){
os.write(buffer, 0, bytesRead);
}
is.close();
//刷新OutputStream,将缓冲的数据写入文件
os.flush();
os.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。