こんにちは、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());
}
}
}