java – 如何获取打开文件弹出窗口
作者:互联网
现在,我有一个设置类路径,但我想弹出一个打开的文件,用户选择打开哪个文件.我已经尝试过JFileChooser,但到目前为止还没有成功.这是我的代码:
public static void main(String[] args) throws IOException {
JFileChooser chooser = new JFileChooser();
int returnValue = chooser.showOpenDialog( null ) ;
if( returnValue == JFileChooser.APPROVE_OPTION ) {
File file = chooser.getSelectedFile() ;
}
// I don't want this to be hard-coded:
String filePath = "/Users/Bill/Desktop/hello.txt";
我该怎么做呢?
解决方法:
我认为问题是文件文件的范围.
尝试在if块之外声明文件.
File file = null;
if( returnValue == JFileChooser.APPROVE_OPTION ) {
file = chooser.getSelectedFile() ;
}
if(file != null)
{
String filePath = file.getPath();
}
标签:java,file-io,openfiledialog,jfilechooser 来源: https://codeday.me/bug/20190531/1187311.html