我试图在终端上获取 4 个字符串作为输出,您必须在其中输入文本,并且该文本将保存在 .txt 文件中,但发生的情况是应该在终端上输出的字符串被输入到 txt 文件中。这是我的代码
import easyIO.*;
class Birds {
public static void main(String[] args) {
In press = new In();
Out birds = new Out("birdfile.txt", true);
birds.out("Birds name: ");
String biName = press.inLine();
birds.out("Sex: ");
String biSex = press.inLine();
birds.out("Place for observation: ");
String plObs = press.inLine();
birds.out("Date of observation: ");
int date = press.inInt();
birds.close();
}
}
有谁知道我如何获取字符串鸟类名称、性别、观察地点、观察日期作为终端上的输出,然后您在输出中输入的内容保存在文本文件中?
因为现在输出消息被保存在文本文件中。
不知道我在这里做错了什么。
非常感谢您的帮助!