gpt4 book ai didi

java - 在 Mac 上用 Java 创建文件

转载 作者:行者123 更新时间:2023-12-04 06:19:23 25 4
gpt4 key购买 nike

我正在尝试创建一个简单的 txt 文件,但由于某种原因它不起作用 - 我是一个完整的初学者,从下面可以看出!

import java.io.File;
import java.util.*;

import javax.swing.JFrame;

public class Stuff{

public static void main (String[] args) {

final Formatter x;
try {
x = new Formatter("FoSho.txt");
System.out.println("You created a file called FoSho.txt");
} catch (Exception e) {
System.out.println("You got an error");
}
}
}

最佳答案

我能够使用以下内容创建文本文件
使用 FileWriter 和 BufferedWriter

public static void main(String[] args) {
// TODO code application logic here
String filename = "<//Enter the location you want the file//>";
FileWriter fstream;

try {
fstream = new FileWriter(filename);
BufferedWriter out = new BufferedWriter(fstream);
out.write("My Name is Bobby Bob");
out.newLine();
out.flush();
out.close();
} catch (IOException e) {
e.printStackTrace();
}

}

关于java - 在 Mac 上用 Java 创建文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6793868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com