早上好,我有一个使用JShortcut的Java代码,问题是我无法使用最小化窗口创建快捷方式,尝试查找属性为windowstyle,但什么都没找到。
代码。
public void createDesktopShortcut() {
try {
link.setFolder(JShellLink.getDirectory("desktop"));
link.setName("ie");
link.setPath(filePath);
//windowstyle = 7
link.save();
} catch (Exception ex) {
ex.printStackTrace();
}
}
如何添加此选项?