JAVA I/O 简单读取

package textMyself;

import java.io.FileNotFoundException;

import java.io.FileReader;

import java .io.FileWriter;

import java.io.IOException;

public class Test {

public static void main(String[] args) {

// TODO Auto-generated method stub

try {

FileReader finput=new FileReader("这里写要读取的文本路径");

int i=0;

while ((i=finput.read())!=-1) {   //读取内容,直到文件尾

System.out.print((char)i);  //打印内容

}

finput.close();

}catch (FileNotFoundException e) {

// TODO: handle exception

e.printStackTrace();

}catch(IOException e) {

e.printStackTrace();

}

}

}

笔记:

FileReader是用于读取字符流。 要读取原始字节流,请考虑使用FileInputStream 。

你可能感兴趣的:(JAVA I/O 简单读取)