使用java,我想要一些可以让我获取路径的代码: 1)当前用户的开始菜单 2)所有用户的开始菜单
我需要WinXP和Win7的答案。所以希望有一个通用的答案可以让我两个。
答案 0 :(得分:4)
除了编写DLL并调用本机Windows API之外别无选择:
SHGetFolderPath
(NULL, CSIDL_PROGRAMS, NULL, SHGFP_TYPE_CURRENT, &szPathBuffer)
SHGetFolderPath(NULL, CSIDL_COMMON_PROGRAMS, NULL, SHGFP_TYPE_CURRENT, &szPathBuffer)
如果您确实需要“开始”菜单的根,请使用CSIDL_STARTMENU
和CSIDL_COMMON_STARTMENU
已知文件夹的完整列表:CSIDL。
如果您定位到Windows Vista及更高版本,请使用SHGetKnownFolderPath
功能代替SHGetFolderPath
。
您可以使用JNA library调用本机Windows API,而无需自己编写本机代码,而是使用纯Java代码。
答案 1 :(得分:2)
好的,我找到了一个解决方案,但也许其他人有一个更高级的解决方案。
我计划做一些像“Runtime.getRuntime()。exec(command);”该命令将是一个“reg query”来查询以下注册表项:
当前用户可以通过以下方式引用: HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Explorer \ Shell文件夹\开始菜单
可以通过以下方式引用所有用户: HKEY_LOCAL_MACHINE \ Software \ Microsoft \ Windows \ CurrentVersion \ Explorer \ Shell文件夹\公共开始菜单
Win7和WinXP都是一样的。如果其他人知道更好的解决方案,我也很乐意看到它。
答案 2 :(得分:1)
在我的程序中,我使用了一个简单的System.getProperty("user.home") + "/Start Menu/Programs"
这给了我用户的开始菜单文件夹。
它适用于Windows 7和Windows 10.我试过这个,因为为了获得用户的桌面,我所要做的就是调用System.getProperty("user.home") + "/Desktop"
。所以我认为它也适用于开始菜单,似乎工作正常。我可以像删除桌面一样删除文件到开始菜单。无论这是否是这样做的正确方法,我都不知道。但我只是分享对我有用的东西。
答案 3 :(得分:0)
另一个选择是从vbs API管理“开始菜单”项。
我为此做了Java Wrapper。
// Install Start Menu
WindowsUtils.installStartMenuItem(WindowsUtils.SPECIALFOLDER_Programs,"my_start_menu", "explorer.exe", "http://www.google.es","Acceso directo a google");
// Uninstall Start Menu
WindowsUtils.uninstallStartMenuItem(WindowsUtils.SPECIALFOLDER_Programs, "my_start_menu");
答案 4 :(得分:0)
我最近发现了这个
public class VBSUtils {
public static String SF_ALLUSERSDESKTOP = "AllUsersDesktop";
public static String SF_ALLUSERSSTARTMENU = "AllUsersStartMenu";
public static String SF_ALLUSERSPROGRAMS = "AllUsersPrograms";
public static String SF_ALLUSERSSTARTUP = "AllUsersStartup";
public static String SF_DESKTOP = "Desktop";
public static String SF_FAVORITES = "Favorites";
public static String SF_MYDOCUMENT = "MyDocuments";
public static String SF_PROGRAMS = "Programs";
public static String SF_RECENT = "Recent";
public static String SF_SENDTO = "SendTo";
public static String SF_STARTMENU = "StartMenu";
private VBSUtils() { }
public static String getSpecialFolder(String folder) {
String result = "";
try {
File file = File.createTempFile("realhowto",".vbs");
file.deleteOnExit();
FileWriter fw = new java.io.FileWriter(file);
String vbs = "Set WshShell = WScript.CreateObject(\"WScript.Shell\")\n"
+ "wscript.echo WshShell.SpecialFolders(\"" + folder + "\")\n"
+ "Set WSHShell = Nothing\n";
fw.write(vbs);
fw.close();
Process p = Runtime.getRuntime().exec("cscript //NoLogo " + file.getPath());
BufferedReader input =
new BufferedReader
(new InputStreamReader(p.getInputStream()));
result = input.readLine();
input.close();
}
catch(Exception e){
e.printStackTrace();
}
return result;
}
public static void main(String[] args){
System.out.println(VBSUtils.getSpecialFolder(VBSUtils.SF_ALLUSERSSTARTMENU));
System.out.println(VBSUtils.getSpecialFolder(VBSUtils.SF_ALLUSERSDESKTOP));
System.out.println(VBSUtils.getSpecialFolder(VBSUtils.SF_DESKTOP));
System.out.println(VBSUtils.getSpecialFolder(VBSUtils.SF_PROGRAMS));
//System.out.println(VBSUtils.getSpecialFolder(VBSUtils.SF_STARTUP));
}
}