我在这里遇到问题
我正在使用netbeans!
我无法使用 .write
这是我的代码:
ModFile=new File(NameText.getText() + ".mod");
if(!ModFile.exists()){
try {
ModFile.createNewFile();
System.out.println("Mod file has been created to the current directory");
ModFile.*write*(CodesBox.getText());
} catch (IOException ex) {
Logger.getLogger(ModMakerGui.class.getName()).log(Level.SEVERE, null, ex);
}
}
这一行:
ModFile.*write*(CodesBox.getText());
给我带来了问题!
请在这里帮助我