Accessing Files with the java.nio.file package

java.nio.file preferred packages for files

  • java.nio.FileXXX streams are deprecated

Provide a number of benefits over java.io

  • Better exception reporting
  • Greater scalabity - large file system
  • More file system feature support
  • Simplifies common task

常用class
Path

  • Used to locate a file system item
  • Can be a file or directory

Paths

  • Static Path factory methods
  • From string-based hierarchical path
  • From URI
Path p1 = Paths.get("\\documents\\data\\foo.txt");
Path p2 = Paths.get("\\documents","data","foo.txt");

Files

  • Static methods for interacting with files
  • Create, copy, delete, etc.
  • Open file streams
    • new BufferedReader
    • new BufferedWriter
    • new InputStream
    • new OutputStream
  • Convenience methods - read/write file contents
    • readAllLines
// Template - Reading Lines with BufferedReader
void readData() throws IOException{
try (BufferedReader br = Files.newBufferedReader(Paths.get("data.txt"))){
	String inValue;
	while((inValue = br.readLine()) != null){
		System.out.println(inValue);
	}
  }
}

// Read All Lines
void readThemAll() throws IOException{
	List<String> lines = Files.readAllLines(Paths.get("data.txt"));
	
	for(String line: lines)
		System.out.println(line);
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值