我需要一些帮助。
我正在尝试使用 FileOutputStream 将字节写入文件...
但是该文件没有作为我构建的 jar 文件出现在目录中。
或者,如果我以其他方式尝试,即使刷新文件,它也不会向文件中写入任何内容。
这是我当前的代码:
File ModFile =new File(NameText.getText() + ".mod");
FileOutputStream writer = null;
String toProcess = CodesBox.getText();
int i = Integer.parseInt(CodesBox.getText());
byte codes = (byte) i;
try {
writer = new FileOutputStream(ModFile);
writer.write(codes);
} catch (IOException ex) {
Logger.getLogger(ModMakerGui.class.getName()).log(Level.SEVERE, null, ex);
}finally{
try {
writer.close();
} catch (IOException e) {
e.printStackTrace();
}
}
请帮忙!