文件可以通过字节流和字符流读取
package fileIO;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
public class FileUtil {
/**
* 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。
*/
// 一次读一个字节
public static void readFileByByte(String filePath) {
File file = new File(filePath);
InputStream is = null;
try {
System.out.println("以字节为单位读取文件内容,一次读取一个字节:");
is = new FileInputStream(file);
int ch;
while ((ch = is.read()) != -1) {
System.out.print(ch + ":");
System.out.write(ch);
System.out.print(" ");
System.out.flush();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
is.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
// 一次读多个字节
public static void readFileByManyBytes(String filePath) {
File file = new File(filePath);
InputStream is = null;
byte[] bytes = new byte[10];
int num = 0;
try {
System.out.println("以字节为单位读取文件内容,一次读多个字节:");
is = new FileInputStream(file);
FileUtil.showAvailableBytes(is);
// 读入多个字节到字节数组中,num为一次读入的字节数
while ((num = is.read(bytes)) != -1) {
System.out.write(bytes, 0, num);
System.out.flush();
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/**
* 以字符为单位读取文件,常用于读文本,数字等类型的文件
*/
// 一次读一个字符
public static void readFileByChar(String fileName) {
File file = new File(fileName);
Reader reader = null;
try {
System.out.println("\n以字符为单位读取文件内容,一次读一个字符:");
reader = new InputStreamReader(new FileInputStream(file));
int ch;
while ((ch = reader.read()) != -1) {
// 对于windows下,\r\n这两个字符在一起时,表示一个换行。
// 但如果这两个字符分开显示时,会换两次行。
// 因此,屏蔽掉\r,或者屏蔽\n。否则,将会多出很多空行。
System.out.print(ch + ":");
if (((char) ch) != '\r') {
System.out.print((char) ch);
}
System.out.print(" ");
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
reader.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
// 一次读多个字符
public static void readFileByManyChars(String filePath) {
File file = new File(filePath);
Reader reader = null;
try {
System.out.println("\n以字符为单位读取文件内容,一次读多字符:");
reader = new InputStreamReader(new FileInputStream(file));
char[] tempchars = new char[30];
int num;
while ((num = reader.read(tempchars)) != -1) {
if ((num == tempchars.length) && (tempchars[tempchars.length - 1] != '\r')) {
System.out.print(tempchars);
} else {
for (int i = 0; i < num; i++) {
if (tempchars[i] == '\r') {
continue;
} else {
System.out.print(tempchars[i]);
}
}
}
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} finally {
try {
reader.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
/**
* 以行为单位读取文件,常用于读面向行的格式化文件
*/
public static void readFileByLine(String filePath) {
File file = new File(filePath);
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) {
}
}
}
}
/**
* 显示输入流中还剩的字节数
*/
private static void showAvailableBytes(InputStream in) {
try {
System.out.println("当前字节输入流中的字节数为:" + in.available());
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
String filePath = "E:/file/ReadFileByByte.txt";
readFileByByte(filePath);
// readFileByManyBytes(filePath);
readFileByChar(filePath);
// readFileByManyChars(filePath);
readFileByLine(filePath);
}
}
(1)字节流读取出来是0-255的数字,System.out.write()根据ACSII码表将数字转为对应的字符。字节流读汉字不方便,可以看到控制台出现了乱码。
(2)字符流一次读两个字节(0-65535),java好像比较智能,它自动的分辨英文字母和汉字,英文字母读取一个字节,而汉字读取了两个字节。