我似乎在文件选择器对话框的非常简单的实现中遇到了问题,每次都需要我最小化 Netbeans 才能访问它,这让人非常沮丧,特别是……
我似乎在对文件选择器对话框进行非常简单的实现时遇到了问题,每次都需要我最小化 Netbeans 才能访问它,这让人非常沮丧,特别是现在进行测试时。
我在网上看到了一些解决方案,包括 SO ,但似乎都没有解决问题,而其他一些解决方案对于我目前的水平来说似乎非常冗长和复杂。
private void fileSearch() {
JFileChooser fileSelect = new JFileChooser();
int returnVal = fileSelect.showOpenDialog(null);
String pathToFile;
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fileSelect.getSelectedFile();
pathToFile = file.getAbsolutePath();
try {
P.binaryFileToHexString(pathToFile);
} catch (Exception e) {
System.out.print("Oops! there was an error there..." + e);
}
System.out.println("\nYou chose to open this file: " + file.getName());
}
}
我的一些尝试包括使用;
.requestFocus();
.requestFocusInWindow();
.setVisible();
是否有我可以设置的特定属性/方法来解决该问题?
将 JFileChooser 置于所有窗口之上
下载声明:
本站所有软件和资料均为软件作者提供或网友推荐发布而来,仅供学习和研究使用,不得用于任何商业用途。如本站不慎侵犯你的版权请联系我,我将及时处理,并撤下相关内容!