该文件必须是工具的输入文件才能进一步处理它。
我是java新手..会感谢任何帮助。
这是我当前的文件选择器代码。
private void browseButton1ActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
JFileChooser chooser = new JFileChooser();
chooser.showOpenDialog(null);
File f = chooser.getSelectedFile();
String filename = f.getAbsolutePath();
textField1.setText(filename);
}