Java,将字符串写入记事本文件

时间:2013-03-22 17:51:48

标签: java notepad

我只是想在记事本文件中添加一个字符串。我们调用记事本文件“Values.txt” 说我有;

public static void main(String[] args) {

String myText = "Let's add this string to a notepad file";

// Code to add string to a notepad file

}

那段代码是什么?

1 个答案:

答案 0 :(得分:1)

看看Basic I/O tutorial。它只是操纵一个文本文件。你的所有需求都应该包含在那里。