有人可以解释/告诉我如何在此document中使用requestShortcut
方法,我想在程序运行时将jar作为桌面快捷方式。
下面是我的Java代码
private static Component frame;
public static void main(String[] args){
JOptionPane.showMessageDialog(
null, "Hello World", "Hello World",
JOptionPane.INFORMATION_MESSAGE);
//I want to create shortcut code here
requestShortcut(true, false, ""); // return cannot find symbol
// this method should create desktop
// shortcut if i understand it right.
}
我们实际上如何实现此requestShortcut()方法?
P / s:我想要创建快捷方式的目的是因为我会将快捷方式移至所有程序/启动路径。
最佳答案
我认为requestShortcut()不能被Java应用程序使用
关于java - 如何使用requestShortcut()创建桌面快捷方式?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22777054/