这是一个锻炼程序,它会询问用户的姓名并创建一个文件来存储他的所有数据。在该文件中,有 3 个文字:全名、年龄和经验。
当用户输入他的用户名时,不起作用的功能是打印出文件中的所有信息。
因此,如果我有一个名为 Bob 的帐户,并且我在控制台中输入 Bob,我应该得到我的全名、我的年龄和我的经验。(之前已经存储在文件中)。
这是我从文件中读取数据并打印出来的方法。我用调试器运行了几次,但它只读取文件的标题,而不是其中的信息。结果是“找不到文件”。我该如何解决?谢谢。
public void getInfo(String nameIn) {
Scanner keyboard = new Scanner(System.in);
Scanner x;
out.println("\nWhat's your account's name?");
nameIn = keyboard.nextLine();
//It reads the title of the file, not the data inside it.
try {
x = new Scanner(nameIn);
if (x.hasNext()) {
String a = x.next();
String b = x.next();
String c = x.next();
out.println("Account data for user: " + nameIn);
out.printf("Name: %s \tAge: %s \tExperience: %s", a, b, c);
}
} catch (Exception e) {
out.println("Could not find file.");
}
这是该类中的其余代码。
public class createMember {
public String name;
private String fullName;
private String age;
private String experience;
private Formatter x;
public createMember(String name) {
this.name = name;
}
public void setMembership() {
try {
x = new Formatter(name);
out.println("File with name \"" + name + "\" has been created!");
} catch (Exception e) {
out.println("Could not create username.");
}
}
public void setInfo() {
Scanner keyboard = new Scanner(System.in);
out.println("Enter your Full Name");
fullName = keyboard.nextLine();
out.println("Enter your Age");
age = keyboard.nextLine();
out.println("Enter your lifting experience");
experience = keyboard.nextLine();
x.format("Name: %s \tAge: %s \tExperience: %s", fullName, age, experience);
}