你好,堆垛机的朋友们!我在为我的游戏创建适当的保存功能时遇到问题。我遇到的主要问题是捕获名为 display 的 J 文本区域内的所有数据。显示屏反映了迄今为止游戏中的动作,显示屏顶部显示“欢迎来到 Togiz Kumalak”。
我的问题是当我保存游戏时,它只将第一行文本记录到文件中,而不是所有行。
一个例子是:
Welcome to Togiz Kumalak
Player 1 Cup 1
Player 2 Cup 3
等等。当我保存文件时,只会显示第一行。
这是我当前用于保存侦听器的代码。
class SaveListener implements ActionListener
{
String a = display.getText();
JFileChooser myChooser= new JFileChooser();
public void actionPerformed(ActionEvent event)
{
String fileName;
myChooser.setCurrentDirectory(new File("."));
myChooser.showSaveDialog(null);
fileName = myChooser.getSelectedFile().getPath();
try
{
OutputStream file = new FileOutputStream(fileName);
PrintStream printStream = new PrintStream(file);
printStream.print(a);
printStream.close();
/* Version 11, 23.1. Scroll pane and text area support when saving. */
}
catch(IOException e)
{
System.out.println("Problem making or writing to an output stream.");
System.out.println(e);
}
}
}