gpt4 book ai didi

java - 创建桌面快捷方式

转载 作者:搜寻专家 更新时间:2023-11-01 01:27:20 25 4
gpt4 key购买 nike

我正在开发 Java 应用程序。

我想为我的应用程序的 Exe 文件创建桌面快捷方式。

是否可以从我的应用程序本身做到这一点?或者用户必须通过右键单击手动执行?

最佳答案

package farzi;

import net.jimmc.jshortcut.JShellLink;

public class Sc {
JShellLink link;
String filePath;

public Sc() {
try {
link = new JShellLink();
filePath = JShellLink.getDirectory("")
+ "C:\\Program Files\\Internet Explorer\\iexplore.exe";

} catch (Exception e) {

}

}

public void createDesktopShortcut() {

try {
link.setFolder(JShellLink.getDirectory("desktop"));
link.setName("ie");
link.setPath(filePath);
link.save();
} catch (Exception ex) {
ex.printStackTrace();
}

}

public static void main(String a[]) {
Sc sc = new Sc();
sc.createDesktopShortcut();
}
}

你可以从 here 得到 jar

关于java - 创建桌面快捷方式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15605715/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com