Java,使用FileDialog后,编译没有结束
Java, after using FileDialog, compilation does not end
我有简单的 java 代码到 select 文件和 return 数组。
当我使用专用方法(下面的整个代码)时,我的编译(在 IntelliJ 中)没有结束 -> 它到达 public static void main(String[] arg)
的最后一个通道,它执行最后一个通道 System.out.println("Program ends.");
但我没有得到来自编译器的信息:
Process finished with exit code -1
相反,我需要手动停止它,如果我想再次 运行 它,我得到的信息是我不能并行 运行 代码,我想停止它并重新 运行现在。
完整代码:
import java.util.HashMap; //import the HashMap class
import java.io.File; // Import the File class
import java.io.FileNotFoundException; // Import this class to handle errors
import java.util.Scanner; // Import the Scanner class to read text files
import java.awt.FileDialog;
import java.awt.Frame;
public class Project1
{
public static void main(String[] arg)
{
HashMap<Integer, int[][]> dicUsedFuncs = new HashMap<Integer, int[][]>();
//import textfile with haskell code
String[] arrString=SelectFile();
System.out.println(arrString[0]);
System.out.println(arrString[1]);
//scan load
System.out.println("End");
}
private static String[] SelectFile()
{
String[] arrReturn = new String[2];
String strDefaultPath=System.getProperty("user.dir"); //default location to open
Frame frame = null;
FileDialog fd = new FileDialog(frame, "Please choose a text file with code.", FileDialog.LOAD);
fd.setDirectory(strDefaultPath);
fd.setFile("*.txt");
fd.setVisible(true);
String filename = fd.getFile(); //get just the selected file name
if (filename == null) {
arrReturn[0] = "NotSelected";
}else {
filename= new File(fd.getFile()).getAbsolutePath(); //get full file path of selected file
arrReturn[0] = "Selected";
arrReturn[1] = filename;
}
return arrReturn;
}
}
我添加了以下内容:
图书馆
import java.awt.Window;
循环以关闭方法 private static String[] SelectFile()
中的所有 windows
for (Window window : Window.getWindows()) { window.dispose(); }
我有简单的 java 代码到 select 文件和 return 数组。
当我使用专用方法(下面的整个代码)时,我的编译(在 IntelliJ 中)没有结束 -> 它到达 public static void main(String[] arg)
的最后一个通道,它执行最后一个通道 System.out.println("Program ends.");
但我没有得到来自编译器的信息:
Process finished with exit code -1
相反,我需要手动停止它,如果我想再次 运行 它,我得到的信息是我不能并行 运行 代码,我想停止它并重新 运行现在。
完整代码:
import java.util.HashMap; //import the HashMap class
import java.io.File; // Import the File class
import java.io.FileNotFoundException; // Import this class to handle errors
import java.util.Scanner; // Import the Scanner class to read text files
import java.awt.FileDialog;
import java.awt.Frame;
public class Project1
{
public static void main(String[] arg)
{
HashMap<Integer, int[][]> dicUsedFuncs = new HashMap<Integer, int[][]>();
//import textfile with haskell code
String[] arrString=SelectFile();
System.out.println(arrString[0]);
System.out.println(arrString[1]);
//scan load
System.out.println("End");
}
private static String[] SelectFile()
{
String[] arrReturn = new String[2];
String strDefaultPath=System.getProperty("user.dir"); //default location to open
Frame frame = null;
FileDialog fd = new FileDialog(frame, "Please choose a text file with code.", FileDialog.LOAD);
fd.setDirectory(strDefaultPath);
fd.setFile("*.txt");
fd.setVisible(true);
String filename = fd.getFile(); //get just the selected file name
if (filename == null) {
arrReturn[0] = "NotSelected";
}else {
filename= new File(fd.getFile()).getAbsolutePath(); //get full file path of selected file
arrReturn[0] = "Selected";
arrReturn[1] = filename;
}
return arrReturn;
}
}
我添加了以下内容:
图书馆
import java.awt.Window;
循环以关闭方法
private static String[] SelectFile()
中的所有 windows
for (Window window : Window.getWindows()) { window.dispose(); }