我正在尝试制作一个复制文件的程序,然后使用一些Apache IO方法将其粘贴到另一个位置。它在Eclipse中完美运行,但是当我将它导出到JAR时,JAR不会运行。 “过去的Filepaths.txt”文件位于我的项目文件夹中。当我查看任务管理器时,我可以看到它启动几秒钟,然后它就消失了。我把它缩小到一个if
语句:
if (filePaths.length == 2){
source.setText(filePaths[0]);
dest.setText(filePaths[1]);
}
如果我发表评论,那么JAR会运行。如果我不这样做,那就没有。
这是我在约30分钟内创建的一些非常粗略的代码,作为一种脚本,帮助我移动一些文件,所以如果它看起来有点粗糙,我道歉。
我的完整代码:
public class Main {
private JFrame jf = new JFrame();
private JTextField source, dest;
private String sourcePath, destPath;
public Main() {
String[] filePaths = null;
try {
filePaths = FileUtils.readFileToString(new File("Past Filepaths.txt"), "ASCII").split("~");
} catch (IOException e1) {
e1.printStackTrace();
}
JPanel panel = new JPanel();
JButton jButton = new JButton("Update Files");
source = new JTextField("", 40);
dest = new JTextField("", 40);
if (filePaths.length == 2){
source.setText(filePaths[0]);
dest.setText(filePaths[1]);
}
jButton.addActionListener( (e) -> {
updateVars();
updateFiles();
});
jf.setSize(500, 200);
jf.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jf.setLocationRelativeTo(null);
jf.setResizable(false);
jf.add(panel);
panel.add(new JLabel("Source"));
panel.add(source);
panel.add(new JLabel("Destination"));
panel.add(dest);
panel.add(jButton);
jf.setVisible(true);
}
private void updateVars(){
sourcePath = source.getText();
destPath = dest.getText();
}
private void updateFiles(){
if(new File(sourcePath).exists() == false){
JOptionPane.showMessageDialog(jf, sourcePath + " is not a valid file path!");
return;
}
if(new File(destPath).exists() == false){
JOptionPane.showMessageDialog(jf, destPath + " is not a valid file path!");
return;
}
try {
FileUtils.copyDirectory(new File(sourcePath), new File(destPath));
} catch (IOException e) {
e.printStackTrace();
}
File pastFiles = new File("Past Filepaths.txt");
try{
FileUtils.write(pastFiles, sourcePath + "~", "ASCII");
FileUtils.write(pastFiles, destPath, "ASCII", true);
}catch(Exception e){
e.printStackTrace();
}
}
答案 0 :(得分:2)
这是一个调试问题,而不是代码问题本身。所以,调试它。
以调试模式启动JVM:
java -Xdebug -agentlib:jdwp=transport=dt_socket,address=9999,server=y,suspend=y <rest of your startup command>
请注意,suspend=y
将暂停执行,直到您将IDE连接到它。
打开IDE并设置要执行停止的断点,将IDE连接到调试端口9999
(根据address=9999
),然后单步执行代码以查看发生的情况。< / p>