java如何读取⽂件的⾏数_如何使⽤Java计算⽂本⽂件中的⾏
数?
计算⽂件中的⾏数通过将所需⽂件的对象作为参数传递给其构造函数来实例化FileInputStream类。
使⽤FileInputStream类的read()⽅法将⽂件的内容读取到字节数组。
java中split的用法通过传递获得的字节数组作为其构造函数的参数来实例化String类。
现在,通过将新⾏的正则表达式作为参数传递给此⽅法,使⽤split()⽅法将上述字符串拆分为字符串数组。
现在,到获得的数组的长度。
⽰例import java.io.File;
import java.io.FileInputStream;
public class NumberOfCharacters {
public static void main(String args[]) throws Exception{
File file = new File("data");
FileInputStream fis = new FileInputStream(file);
byte[] byteArray = new byte[(int)file.length()];
String data = new String(byteArray);
String[] stringArray = data.split("\r\n");
System.out.println("⽂件中的⾏数是 ::"+stringArray.length);
}
}
数据
line 1
line 2
line 3
输出结果⽂件中的⾏数是 ::3
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论