ここで助けが必要です。
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();
}
}
助けてください!