我在Minecraft Launcher的一个项目中,但是没有使用Java! 只有C#。
我有这段代码,但不知道出了什么问题。 按下按钮后,鼠标显示正在加载文件,但没有任何反应。
这是我的第一个项目。
private void StartMinecraft(string username, string session)
{
string installPath = @"C:\Program Files (x86)\Minecraft Launcher\runtime\jre-x64\bin\javaw.exe";
if (System.IO.File.Exists(installPath))
{
ProcessStartInfo info = new ProcessStartInfo();
{
info.FileName = installPath;
info.CreateNoWindow = false;
info.Arguments = @"ALL ARGUMENTS ARE BELOW ON PASTEBIN PAGE";
};
Process.Start(info);
}
else
{
CustomMsgBox.Show("Cannot find Java installation. Please reinstall the latest version of Java and try again.");
}
所有参数:https://pastebin.com/bHwuAfjx
我想运行这个游戏。
很抱歉拼写错误,因为我不会说很多英语。而且我正在使用Google翻译来帮助我处理这些文本。