获取当前系统的时间日期,并利用IO流输出到一个以你的名字命名的文本文档里
时间: 2024-03-03 09:47:52 浏览: 55
好的,以下是Java代码实现:
```java
import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;
import java.text.SimpleDateFormat;
import java.util.Date;
public class Main {
public static void main(String[] args) {
// 获取当前系统时间
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");
Date currentTime = new Date();
String timeStr = dateFormat.format(currentTime);
// 创建输出流
String fileName = "YourName.txt";
try (PrintWriter out = new PrintWriter(new FileWriter(fileName))) {
out.println(timeStr);
System.out.println("写入成功!");
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
将代码中的 "YourName" 替换为你自己的名字,然后运行即可生成一个以你的名字命名的文本文档,其中包含当前系统的日期时间。
阅读全文