我为我的 Java 应用程序编写了一个更新程序,它在线下载其最新的 jar 文件,在启动新 jar 并最终删除自身之前替换它的快捷方式。
我使用以下代码创建快捷方式:
try {
//Location of shortcut -> Working
String address = "C:\\Users\\"+System.getProperty("user.name")+"\\Desktop\\App.lnk";
//Delete old shortcut -> Not working
File f = new File(address);
f.delete();
//Create new shortcut
FileWriter fw = new FileWriter(address);
fw.write("[Program]\n"); //Probably wrong section but cannot find real one
fw.write("FILE=" + (new File(App.class.getProtectionDomain().getCodeSource().getLocation().toURI()).getPath()) + "App-"+version+".jar\n"); //Shortcut to newest version
fw.flush();
fw.close();
} catch (URISyntaxException e) {e.printStackTrace();}
该代码确实创建了一个文件,但它似乎被破坏了所以我的问题是我在这里做错了什么?