在Windows上以管理员身份运行Java应用程序

我正在用Java编写安装程序,因此将需要提升的权限才能访问Program Files目录。根据我在网上找到的信息,我编写了如下的实现:

public static void main(String args[]) {

if (!checkPrivileges()) { // spawn a copy w/ elevated privileges

Runtime runtime = Runtime.getRuntime();

try {

Process p = runtime.exec(

"runas /profile /user:Administrator \"java -cp . main.Main\"");

} catch (IOException e) { ... }

} else {

// Run with elevated privileges

}

}

我用来检查特权的测试与此处找到的答案略有不同,看起来像这样:

private static boolean checkPrivileges() {

File testPriv = new File("C:\\Program Files\\");

if (!testPriv.canWrite()) return false;

File fileTest = null;

try {

fileTest = File.createTempFile("test", ".dll", testPriv);

} catch (IOException e) {

return false;

} finally {

if (fileTest != null)

fileTest.delete();

}

return true;

}

当我运行它时,它没有按预期方式进行特权测试,并调用了exec。通过查看来检查该呼叫是否有效,p.isAlive()表明该过程实际上仍然有效。但是,我没有看到任何有关新过程的证据,Windows也没有提示我授予权限。

我对使用exec()Java

不熟悉,因此很可能以某种方式误解了它的用法。因此,我在这里尝试做的事情是否可能?如果没有,有没有一种直接的替代方法可以真正为我获得所需的结果?

回答:

好的,我终于设法解决了一个我很满意的问题;这有点丑陋,但它可以满足我的需求。

我从借来的代码这个答案做实际的权限提升;

从那里开始,问题是实际上使该解决方案与Java一起工作的问题之一。最终的代码如下所示:

    if (!checkPrivileges()) {

try {

String jarPath = DownloaderMain.class.getProtectionDomain().getCodeSource().getLocation().getPath();

String decodedPath = URLDecoder.decode(jarPath, "UTF-8");

decodedPath = decodedPath.substring(1, decodedPath.length());

Elevator.executeAsAdministrator(System.getProperty("java.home") + "\\bin\\java", "-jar " + "\"" + decodedPath + "\"");

} catch (UnsupportedEncodingException e) {

e.printStackTrace();

}

} else {

// Run with elevated privileges

}

checkPrivileges方法从上面没有改变,并且Elevator该类实际上与链接的解决方案中出现的类相同(我只是取出了不需要的main方法)。该解决方案假定要提升的过程是一个罐子;可以根据自己的需要进行更改,这并不难。

以上是 在Windows上以管理员身份运行Java应用程序 的全部内容, 来源链接: utcz.com/qa/430005.html

回到顶部