带有JFileChooser UI的OS X中的错误(?)

时间:2015-11-09 19:26:08

标签: java user-interface save jfilechooser

我和其他许多人一样,在这个论坛上不停地遇到并看到了这个问题。遗憾的是,从来没有回答过一般也没有完 有Opening时,有时会不规则地显示用户界面。这包括SavingArray文件。

例如,如果我有这个代码: 我尝试读取.txt并将每行放在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"); } } (allaNamn)中。

System.out.println()

我已经尝试过调试这个,以及其他一些程序员;遗憾的是没有任何成功。我在打印方法中有一些1 2

int resultat = fc.showOpenDialog(null);
  

&#34; 3&#34;没有出现,因此问题最有可能出现在:

     

import csv input_file = csv.DictReader(open("runners_times.csv")) for row in input_file: time_taken = float(row["finish_time"])-float(row["start_time"]) print (row) print (time_taken) with open("runners_times_appended.csv", "w+") as to_file: writer = csv.writer(to_file, delimiter=",") for row in input_file: writer.writerows(all)

值得注意的是程序没有关闭,而是在没有任何显示的情况下继续运行 - 没有错误等。提前感谢您的帮助。

2 个答案:

答案 0 :(得分:0)

ShowOpenDialog()停止执行线程并等待用户输入 一个选项是在AWT事件派发线程上没有执行ShowOpenDialog() (使用调试器确认)

如果确实如此 - 您可以尝试致电:

SwingUtilities.invokeLater(new Runnable() {
     public void run() {
         getFile();
     }
 });

甚至比简单地使用SwingUtilities.invokeLater更好,使用SwingWorker API。

答案 1 :(得分:0)

这对我有用:

    JFileChooser fc = new JFileChooser();
    int returnVal = fc.showSaveDialog(this);
    if (returnVal == JFileChooser.APPROVE_OPTION) {
    try {
         File f = fc.getSelectedFile();
         gestorfile = new GestorFile(cadena, f.getCanonicalPath());
        } catch (IOException ex) {
         System.out.println("ERROR i/o");
          }
    }