你好,我是相当新的java和编程。 我不知道如何读的文本文件(test.txt的),并执行它来进行一个过程,如创建和链表中删除节点,以及给它们分配一个值。 例如,如果TXT文件阅读:
插入1
插入3
删除3
我希望该计划使一个节点,并为它分配一个值1,做一个节点,并为它分配一个值3,然后删除具有指定值3节点。
这是一些粗糙的代码,我到目前为止所。 谢谢。
码:
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());
}
}
}