java – 带有JFileChooser UI的OS X中的错误(?)
作者:互联网
我和其他许多人一样,在这个论坛上无休止地遇到并看到了这个问题.遗憾的是,从来没有回答过一般也没有完
当有一个JFileChooser时,UI有时会不规则地出现.这包括打开和保存文件时的内容.
例如,如果我有这个代码:
我尝试读取.txt并将每行放入一个数组(allaNamn).
public static void getFile() {
try {
System.out.println("1");
String aktuellMapp = System.getProperty("user.dir");
JFileChooser fc = new JFileChooser(aktuellMapp);
System.out.println("2");
int resultat = fc.showOpenDialog(null);
System.out.println("3");
if (resultat != JFileChooser.APPROVE_OPTION) {
JOptionPane.showMessageDialog(null, "No file choosen.");
NamnProgram.main(null);
}
String fil = fc.getSelectedFile().getAbsolutePath();
BufferedReader inFil = new BufferedReader(new FileReader(fil));
String rad = inFil.readLine();
int counter = 0;
while (rad != null) {
rad = inFil.readLine();
counter++;
}
if (counter == 0) {
JOptionPane.showMessageDialog(null, "Textfil is empty");
}
BufferedReader skrivFil = new BufferedReader(new FileReader(fil));
allaNamn = new String[counter];
int antal = 0;
String sparaRad = skrivFil.readLine();
while (antal < counter) {
allaNamn[antal] = sparaRad;
sparaRad = skrivFil.readLine();
antal++;
}
//Closing
inFil.close();
skrivFil.close();
}
catch (IOException e1) {
JOptionPane.showMessageDialog (null, "Det misslyckades");
}
}
我试过调试这个,以及其他一些程序员;遗憾的是没有任何成功.我打印的方法中有一些System.out.println():
1
2
“3” Does not show up, thus the problem is most likely in the:
int resultat = fc.showOpenDialog(null);
值得注意的是程序没有关闭,而是在没有任何显示的情况下继续运行 – 没有错误等.在此先感谢您的帮助.
解决方法:
ShowOpenDialog()停止执行线程并等待用户输入.
一个选项是没有在AWT事件派发线程上执行ShowOpenDialog().
(使用调试器确认)
如果确实如此 – 您可以尝试致电:
SwingUtilities.invokeLater(new Runnable() {
public void run() {
getFile();
}
});
甚至比简单地使用SwingUtilities.invokeLater更好,使用SwingWorker API.
标签:java,user-interface,save,jfilechooser 来源: https://codeday.me/bug/20190711/1432938.html