import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.Reader;
public class IORead {
* @param args
* 文件的读写
public static void main(String[] args) {
// TODO Auto-generated method stub
try {
// 方法一
BufferedReader br = new BufferedReader(new FileReader(new File(
"D:/project/transfar/doc/1.txt")));
// StringBuilder bd = new StringBuilder();
StringBuffer bd = new StringBuffer();
while (true) {
String str = br.readLine();
if (str == null) {
break;
System.out.println(str);
bd.append(str);
br.close();
// System.out.println(bd.toString());
// 方法二
InputStream is = new FileInputStream(new File("D:/project/transfar/doc/1.txt"));
byte b[] = new byte[Integer.parseInt(new File("D:/project/transfar/doc/1.txt").length()
+ "")];http://www.huiyi8.com/moban/html模板
is.read(b);
System.out.write(b);
System.out.println();
is.close();
// 方法三
Reader r = new FileReader(new File("D:/project/transfar/doc/1.txt"));
char c[] = new char[(int) new File("D:/project/transfar/doc/1.txt").length()];
r.read(c);
String str = new String(c);
System.out.print(str);
r.close();
} catch (RuntimeException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
相关文章
- 09-29大文件webuploader的基本使用
- 09-29python全栈开发_day8_文件的多种读写方式及游标
- 09-29基于TIA博途通过Modbuspoll库文件实现多个温控设备的modbus轮询读写操作
- 09-29用于基于文件的进程通信的Java文件锁定机制
- 09-29提升文件的读写效率--缓冲流
- 09-29Python 3 读写文件的简单方法!
- 09-29File文件的一些基本方法和操作
- 09-29File文件的一些基本方法和操作
- 09-295 -- Hibernate的基本用法 --4 2 hibernate.properties文件与hibernate.cfg.xml文件
- 09-29VFS - 虚拟文件系统基本操作方法的封装