public class ReadFromFile {
/**
* 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。
*/
public static void readFileByBytes(String fileName) {
File file = new File(fileName);
InputStream in = null;
try {
System.out.println("以字节为单位读取文件内容,一次读一个字节:");
// 一次读一个字节
in = new FileInputStream(file);
int tempbyte;
while ((tempbyte = in.read()) != -1) {
System.out.write(tempbyte);
}
in.close();
} catch (IOException e) {
e.printStackTrace();
return;
}
try {
System.out.println("以字节为单位读取文件内容,一次读多个字节:");
// 一次读多个字节
byte[] tempbytes = new byte[100];
int byteread = 0;
in = new FileInputStream(fileName);
ReadFromFile.showAvailableBytes(in);
// 读入多个字节到字节数组中,byteread为一次读入的字节数
while ((byteread = in.read(tempbytes)) != -1) {
System.out.write(tempbytes, 0, byteread);
}
} catch (Exception e1) {
e1.printStackTrace();
} finally {
if (in != null) {
try {
in.close();
} catch (IOException e1) {
}
}
}
}
/**
* 以字符为单位读取文件,常用于读文本,数字等类型的文件
*/
public static void readFileByChars(String fileName) {
File file = new File(fileName);
Reader reader = null;
try {
System.out.println("以字符为单位读取文件内容,一次读一个字节:");
// 一次读一个字符
reader = new InputStreamReader(new FileInputStream(file));
int tempchar;
while ((tempchar = reader.read()) != -1) {
// 对于windows下,\r\n这两个字符在一起时,表示一个换行。
// 但如果这两个字符分开显示时,会换两次行。
// 因此,屏蔽掉\r,或者屏蔽\n。否则,将会多出很多空行。
if (((char) tempchar) != '\r') {
System.out.print((char) tempchar);
}
}
reader.close();
} catch (Exception e) {
e.printStackTrace();
}
try {
System.out.println("以字符为单位读取文件内容,一次读多个字节:");
// 一次读多个字符
char[] tempchars = new char[30];
int charread = 0;
reader = new InputStreamReader(new FileInputStream(fileName));
// 读入多个字符到字符数组中,charread为一次读取字符数
while ((charread = reader.read(tempchars)) != -1) {
// 同样屏蔽掉\r不显示
if ((charread == tempchars.length)
&& (tempchars[tempchars.length - 1] != '\r')) {
System.out.print(tempchars);
} else {
for (int i = 0; i < charread; i++) {
if (tempchars[i] == '\r') {
continue;
} else {
System.out.print(tempchars[i]);
}
}
}
}
} catch (Exception e1) {
e1.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
}
/**
* 以行为单位读取文件,常用于读面向行的格式化文件
*/
public static void readFileByLines(String fileName) {
File file = new File(fileName);
BufferedReader reader = null;
try {
System.out.println("以行为单位读取文件内容,一次读一整行:");
reader = new BufferedReader(new FileReader(file));
String tempString = null;
int line = 1;
// 一次读入一行,直到读入null为文件结束
while ((tempString = reader.readLine()) != null) {
// 显示行号
System.out.println("line " + line + ": " + tempString);
line++;
}
reader.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (reader != null) {
try {
reader.close();
} catch (IOException e1) {
}
}
}
}
/**
* 随机读取文件内容
*/
public static void readFileByRandomAccess(String fileName) {
RandomAccessFile randomFile = null;
try {
System.out.println("随机读取一段文件内容:");
// 打开一个随机访问文件流,按只读方式
randomFile = new RandomAccessFile(fileName, "r");
// 文件长度,字节数
long fileLength = randomFile.length();
// 读文件的起始位置
int beginIndex = (fileLength > 4) ? 4 : 0;
// 将读文件的开始位置移到beginIndex位置。
randomFile.seek(beginIndex);
byte[] bytes = new byte[10];
int byteread = 0;
// 一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。
// 将一次读取的字节数赋给byteread
while ((byteread = randomFile.read(bytes)) != -1) {
System.out.write(bytes, 0, byteread);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (randomFile != null) {
try {
randomFile.close();
} catch (IOException e1) {
}
}
}
}
/**
* 显示输入流中还剩的字节数
*/
private static void showAvailableBytes(InputStream in) {
try {
System.out.println("当前字节输入流中的字节数为:" + in.available());
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
String fileName = "C:/temp/newTemp.txt";
ReadFromFile.readFileByBytes(fileName);
ReadFromFile.readFileByChars(fileName);
ReadFromFile.readFileByLines(fileName);
ReadFromFile.readFileByRandomAccess(fileName);
}
}
转 ,
zhengjianqi的专栏
分享到:
相关推荐
下面我们将深入探讨Java IO读取文件的技术及其在大数据场景下的应用。 1. **基础概念** - **流(Stream)**:Java IO基于流的概念,流是一组有序的数据序列,可以是字节流或字符流。数据从源(如文件)流向目的地...
Java 7引入的`java.nio.file.Files`类提供了一些方便的静态方法,可以直接读取文件内容: ```java String content = Files.readString(Paths.get("example.txt")); ``` 5. **流的关闭**: 完成文件操作后,...
本文将深入探讨如何使用IO流来读取文件,并通过实例代码详细解释每一个步骤。 首先,要读取一个文件,我们需要获取文件的路径。在给定的示例中,路径是通过`TEST.class.getResource("/simu")`获取的,这通常用于...
fread函数是读取文件内容的关键函数。它可以将文件内容从硬盘读取到内存中。fread函数的原型是: ``` size_t fread(void *ptr, size_t size, size_t nmemb, FILE *stream); ``` 其中,ptr是指向内存中的缓冲区,size...
需要下载poi的包。用io读取对应文件下所有xls的文件中的数据。希望对大家有帮助
文件IO允许程序直接与文件系统交互,执行打开、读取、写入和关闭等操作。这种方式灵活性高,适用于各种复杂的文件操作,如追加、随机访问等。然而,由于每次操作都需要系统调用,效率相对较低。 **标准IO**,也称为...
本篇将重点介绍如何使用Java的IO类来读取文件,并提供了几个示例代码,涵盖从基本的字节流读取到字符流读取,再到使用缓冲流的增强性能读取方式。 首先,我们需要了解Java中处理文件读取的基本类。java.io 包提供了...
在这个示例中,我们首先创建了 FileInputStream 和 FileOutputStream 对象,然后用一个固定大小的缓冲区(这里设为1024字节)循环读取源文件并写入目标文件,直到没有更多的数据可读。 四、BufferedInputStream 和 ...
- **字节流**:使用`FileInputStream`读取文件。以下是一个简单的示例: ```java FileInputStream fis = new FileInputStream("source.txt"); byte[] buffer = new byte[1024]; int bytesRead; while (...
文本文件主要包含可读字符,如ASCII或Unicode编码;二进制文件则可能包含任何数据,如图片、音频或执行程序。 二、文件的常见操作 1. 打开(Open):创建或打开已存在的文件以进行读写操作。程序需要指定打开模式,...
在Java中,`java.io`包提供了许多用于读写文件的类,例如`FileInputStream`和`FileOutputStream`分别用于读取和写入文件,而`BufferedInputStream`和`BufferedOutputStream`则可以提高读写效率。在文件上传的场景下...
《深入理解InTouch IO驱动文件及其与AB PLC的通讯机制》 InTouch IO驱动文件是Wonderware InTouch软件中至关重要的组成部分,它扮演着连接工业自动化系统与硬件设备的桥梁角色,尤其是对于与Allen Bradley(AB)PLC...
在编程中,我们通过文件IO操作来读取文件内容、写入新数据或者修改已有内容。 在大多数编程语言中,文件IO操作通常涉及以下步骤: 1. 打开文件:使用特定的函数(如C++的`fopen`,Java的`FileInputStream`或Python...
例如,使用字符流读取文件内容: ```java File inputFile = new File("input.txt"); try (BufferedReader br = new BufferedReader(new FileReader(inputFile))) { String line; while ((line = br.readLine...
`StreamReader`的`ReadLine`方法会逐行读取文件,直到文件末尾。如果文件内容需要存储在其他数据结构中,例如List,你可以轻松替换ArrayList以提高代码的类型安全性。此外,使用`using`语句可确保`StreamReader`在...
读取文件时,对应地使用FileInputStream或BufferedReader。FileInputStream读取字节,BufferedReader读取字符行。以下是如何用BufferedReader读取文件内容: ```java try (BufferedReader reader = new ...
3. **IO流**:Java的IO流用于读取和写入数据,包括文件和网络。在大文件处理中,通常使用缓冲流(如`BufferedInputStream`和`BufferedOutputStream`)来提高性能,减少系统调用次数。同时,`FileInputStream`和`...
read 函数用来读取文件的内容。该函数的原型是: `ssize_t read(int fd, void *buf, size_t count);` 其中,fd 是文件描述符,buf 是读取的缓存区,count 是要读取的字节数。 五、write 函数 write 函数用来写入...