您好,我對Java和編程相當新。我想知道如何讀取一個文本文件(test.txt)並實現它來執行一個過程,例如創建和刪除鏈接列表中的節點以及爲它們分配一個值。例如,如果TXT文件閱讀:使用文本文件在Java中攜帶命令
插入1
附件3
刪除3
我想的方案,使一個節點,併爲它分配一個值1,做一個節點,給它賦值3,然後刪除那個具有賦值3的節點。
這是我迄今爲止的一些粗略的代碼。謝謝。
CODE:
import java.io.*;
class FileRead
{
public static void main(String args[])
{
try
{
// Open the file that is the first
// command line parameter
FileInputStream fstream = new FileInputStream("textfile.txt");
// Get the object of DataInputStream
DataInputStream in = new DataInputStream(fstream);
BufferedReader br = new BufferedReader(new InputStreamReader(in));
String strLine;
//Read File Line By Line
while ((strLine = br.readLine()) != null)
{
// Print the content on the console
System.out.println (strLine);
}
//Close the input stream
in.close();
}
catch (Exception e){//Catch exception if any
System.err.println("Error: " + e.getMessage());
}
}
}
我相信那裏有一個額外的右括號。 – Jared
謝謝Jared。你會碰巧知道如何解析文本? (關於我上面的問題) –