我正在尝试创建一个简单的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");
}
}
}
答案 0 :(得分:3)
我能够使用以下内容创建文本文件 使用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();
}
}
答案 1 :(得分:0)
此代码应在当前工作目录中创建一个名为“FoSho.txt”的空文件。
为了正确起见,您应该确保close()
Formatter
,但我不认为这会在创建文件时出现问题。
“不工作”的可能性包括:
您不知道“当前工作目录”是什么。如果从IDE启动它,则需要知道IDE正在选择什么。从命令行自己运行它应该很清楚。
它引发了一个异常。如果您收到任何错误消息,请将其包含在您的帖子中。
答案 2 :(得分:0)
你没有给Formatter
写任何东西。调用其format()
方法。
答案 3 :(得分:0)
当我在我的系统上运行此代码时,文件创建成功,您正在使用哪个编辑器?
该文件应位于您系统的某个位置。如果找不到,请进行取景搜索。