java 代码中生成file 文件类型为txt,名称为“testFile”,内容为“testFile”并转换为Path
时间: 2023-11-28 22:49:25 浏览: 68
以下是Java代码示例:
```java
import java.io.FileWriter;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
public class Main {
public static void main(String[] args) {
String fileName = "testFile.txt";
String fileContent = "testFile";
// 生成文件
try (FileWriter fileWriter = new FileWriter(fileName)) {
fileWriter.write(fileContent);
} catch (IOException e) {
e.printStackTrace();
}
// 转换为Path
Path path = Paths.get(fileName);
// 输出Path
System.out.println("Path: " + path);
}
}
```
这段代码会在当前目录下生成一个名为“testFile.txt”的文件,并将其转换为Path对象。最后会输出Path的信息。
阅读全文