私のコードはスタックが初めてで、特にバッファリングされたリーダーでそれらを実装する方法がわかりません。プログラミングが初めてのスタックコードを実装する方法がわかりません。txt ファイルから読み取った方向を逆にして出力するプログラムを作成する必要があります。
try
{
BufferedReader in = new BufferedReader(new FileReader("GoingThere.txt"));
String line = in.readLine();
while(line != null)
{
line.replace("West","East");
line.replace("East","West");
line.replace("North", "South");
line.replace("South", "North");
line = in.readLine();
}
}
catch(FileNotFoundException e)
{
System.out.println("File Not Found");
}
catch(IOException e)
{
System.out.println("IO Exception Found.");
}