如何使用requestShortcut()创建桌面快捷方式?

时间:2014-04-01 04:49:37

标签: java jar

有人可以解释/告诉我如何在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:我想创建快捷方式的目的,因为我将快捷方式移动到路径所有程序/启动。

1 个答案:

答案 0 :(得分:1)

我认为java应用程序无法使用requestShortcut()