开发者

Changing windows user in Java

开发者 https://www.devze.com 2023-01-24 22:25 出处:网络
Is it possible to set a different windows user with Java? I have following issue: My a开发者_如何转开发pplication executes written program as admin. However, at one point I need to switch windows use

Is it possible to set a different windows user with Java? I have following issue:

My a开发者_如何转开发pplication executes written program as admin. However, at one point I need to switch windows user in order to execute program from the command line (this program can only be accessed by this user - I cannot start it as admin due to its license).

So to simplify explanation i need to do following things:

  1. start program as admin
  2. login at one point as different user
  3. execute program from command line
  4. logout from user, login as admin
  5. continue to execute program till the end

I did everything except logged in as user. Program runs on vps server.

I was googling but couldn't find the right solution.


In Linux we have su for this,

I am not sure about windows but this blog seems doing it.

further

here is code snippet to execute native commands from java

try {
    // Execute a command without arguments
    String command = "dir";
    Process child = Runtime.getRuntime().exec(command);

    // Execute a command with an argument
    command = "dir";
    child = Runtime.getRuntime().exec(command);
} catch (IOException e) {
}

Source

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号