请问java中怎样实现txt文件特定行列的读取?

2024年11月03日 05:49
有3个网友回答
网友(1):

百度这个高质量回答设计的真垃圾,别人都采纳了还不让人看到,浪费精力,真是日了狗了。

代码如下:

public static void main(String[] args) {
// TODO Auto-generated method stub
String txtPath = "C:/testReadLine.txt";
int lineNo = 2;
System.out.println(readTxtLine(txtPath,lineNo));
}

public static String readTxtLine(String txtPath, int lineNo) {

String line = "";
String encoding="GBK";
try {
File txtFile = new File(txtPath);
InputStream in = new FileInputStream(txtFile);
InputStreamReader read = new InputStreamReader(in,encoding);
BufferedReader reader = new BufferedReader(read);
int i = 0;
while (i < lineNo) {
line = reader.readLine();
i++;
}
reader.close();
} catch (Exception e) {
// TODO: handle exception
}

return line;
}

网友(2):

可以用 FileReader 先把行读出来,因为是字符串,可以再用 String substring 函数把要的列取出来

网友(3):

读取每一行,并将每一行元素分解成需要的值,可以用空格来分割。

只做过这样的。