通过JFileChooser获取文件时是否可以篡改?

时间:2016-01-22 05:54:46

标签: java user-interface netbeans binary jfilechooser

我正在尝试创建自己的二进制编辑器。我刚刚完成了教程 Netbeans关于如何添加JFileChooser但无法弄清楚如何通过它将txt文件转换为二进制文件。这是netbeans网站上的代码。

private void OpenActionPerformed(java.awt.event.ActionEvent evt) {
int returnVal = fileChooser.showOpenDialog(this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
    File file = fileChooser.getSelectedFile();
    try {
      // What to do with the file, e.g. display it in a TextArea
      textarea.read( new FileReader( file.getAbsolutePath() ), null );
    } catch (IOException ex) {
      System.out.println("problem accessing file"+file.getAbsolutePath());
    }
} else {
    System.out.println("File access cancelled by user.");
}
} 

如何在文件写入文本区域之前转换文件?

0 个答案:

没有答案