Java-仅读取文件的第一行
我只想读取文本文件的第一行并将该第一行放在字符串数组中。
这就是我所拥有的,但是它读取了整个文件。
myTextFile中的ex文本:
Header1,Header2,Header3,Header4,Header51,2,3,4,5
6,7,8,9,10
String line= System.getProperty("line.separator");
String strArray[] = new String[5];
String text = null;
BufferedReader brTest = new BufferedReader(new FileReader(myTextFile));
text = brTest .readLine();
while (text != line) {
System.out.println("text = " + text );
strArray= text.split(",");
}
回答:
如果我了解你,那
String text = brTest.readLine();// Stop. text is the first line.
System.out.println(text);
String[] strArray = text.split(",");
System.out.println(Arrays.toString(strArray));
以上是 Java-仅读取文件的第一行 的全部内容, 来源链接: utcz.com/qa/433547.html