我的目标是创建一个用户输入其名字和姓氏的方法,并使用此信息创建一个.txt文件,并使用名字的第一个首字母和姓氏命名。例如,如果用户输入Marcus Simmon,则创建的文本文件应命名为" MSimmon.txt"以及如何返回此文件名。先感谢您。到目前为止,这是我的代码......
public static String GetUserInfo() {
// complete with your code of the method GetUserInfo
Scanner input = new Scanner(System.in);
System.out.println("Please enter your first name: ");
char initial = input.next().charAt(0);
System.out.println("Please enter your last name: ");
String lastName = input.nextLine();
try{
FileWriter x = new FileWriter(initial + lastName + ".txt");
}
catch(IOException e){
System.out.println("ERROR");
}
}