不会啊 我不是能编过嘛 还有用呢
不这版主说的也对呵 确实这个返回的是一个Integer 那为什么我的还有用呢?
JDK1.5会帮你自动开关箱,当然 可以用了
你用JDK1.4试试看
可惜不是你,陪我到最后
新建的话用setDocument(new PlainDocument())就可以了!
保存的话用这个代码
JFileChooser fc = new JFileChooser();
int returnVal = fc.showDialog(Notebook.this, "保存");
if (returnVal == JFileChooser.APPROVE_OPTION) {
String savefile = fc.getSelectedFile().toString();
try {
BufferedWriter br = new BufferedWriter(new FileWriter(
savefile));
br.write(jta.getText());
//Print;
br.flush();
br.close();
} catch (Exception ex) {
}
这只是个你借鉴啊!
[此贴子已经被作者于2006-11-13 20:15:02编辑过]