欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

java相对路径按行读取文件

程序员文章站 2022-05-10 09:11:00
...
String filename="src/p1/txt/1.txt";
File file = new File(filename);//相对路径读取

文件组织方法:
java相对路径按行读取文件
按行读取:

int row=-1;//行
BufferedReader br = new BufferedReader(new FileReader(file));
String str1=null;
 do {
 		row++; 
 	 }while((str1=br.readLine())!=null);
相关标签: java