用JAVA写一个程序,要求:从键盘上输入你的学号和你姓名,写入到一个文件hello.txt中
时间: 2023-03-11 10:39:40 浏览: 235
java代码-输入学号姓名
答:可以使用以下Java代码来实现:import java.io.FileWriter;
import java.util.Scanner;public class WriteFile {
public static void main(String[] args) {
try {
FileWriter fw = new FileWriter("hello.txt");
Scanner sc = new Scanner(System.in);
System.out.println("请输入你的学号:");
String studentID = sc.nextLine();
System.out.println("请输入你的姓名:");
String name = sc.nextLine();
fw.write(studentID + " " + name + "\n");
fw.close();
sc.close();
} catch (Exception e) {
System.out.println("发生异常:" + e);
}
}
}
阅读全文