正如我最近发现的那样,很难从代码中启动具有管理权限的 Java 进程,因此我决定制作一个单独的启动或调用程序,用 C# 编写。C# 程序有权以管理员身份运行,但是我怎样才能调用 jar 以作为一个运行呢?它调用的程序需要管理员权限才能从注册表中设置和检索值,这是它的设置,并且由于我无法在 Java 中以管理员身份启动程序,因此我需要在 C# 中执行此操作(我选择 C# 而不是 VB,因为我以前用 VB 编写代码,但不再喜欢这种语法了)。这是到目前为止我已经走了多远,但我仍然在控制台中收到错误输出:
static void Main(string[] args)
{
Console.Title = "Universal Android Toolkit Bootup...";
Console.ForegroundColor = ConsoleColor.Green;
try
{
Process pr = new Process();
String uat = Environment.CurrentDirectory + "/com.m4gkbeatz.Java.AndroidToolkit.jar";
pr.StartInfo.Arguments = "-jar " + uat;
pr.StartInfo.FileName = "java";
pr.StartInfo.CreateNoWindow = true;
pr.StartInfo.ErrorDialog = true;
pr.StartInfo.RedirectStandardOutput = true;
pr.StartInfo.RedirectStandardError = true;
pr.StartInfo.UserName = "admin";
pr.StartInfo.UseShellExecute = false;
StreamReader str;
pr.Start();
str = pr.StandardOutput;
while (!pr.HasExited)
{
Console.WriteLine(str.ReadLine());
}
}
catch (Exception ex)
{
Console.ForegroundColor = ConsoleColor.Red;
Console.WriteLine("There was an error while attempting to execute Universal Android Toolkit");
Console.WriteLine(ex.ToString());
error = ex.ToString();
Console.WriteLine("\n");
Console.WriteLine("Please try again.\nPress ENTER to continue...");
Console.Read();
ErrorMenu();
}
}
编辑:这是控制台的输出: