Unity启动外部程序(Process)

启动外部程序时:直接使用Process.Start();来启动外部程序,参数(需要启动的外部程序所在文件位置)

关闭外部程序时:使用 process.Kill();来关闭外部程序

private string exePath;

void Start()
{
exePath = @"C:\Windows\System32\calc.exe";
}

void OnGUI()
{
if (GUI.Button(new Rect(100, 100, 150, 50), "Start Cale"))
{
Process.Start(exePath);
}

if (GUI.Button(new Rect(100, 200, 150, 50), "Stop Cale"))
{
KillProcess("Calculator");
}
}

void KillProcess(string processName)
{
Process[] processes = Process.GetProcesses();
foreach (Process process in processes)
{
try
{
if (!process.HasExited)
{
if (process.ProcessName == processName)
{
process.Kill();
UnityEngine.Debug.Log("已杀死进程");
}
}
}
catch (System.InvalidOperationException ex)
{
UnityEngine.Debug.Log(ex);
}
}
}

原文地址:https://www.cnblogs.com/lingLuoChengMi/p/9662115.html

时间: 2024-11-05 16:34:49

Unity启动外部程序(Process)的相关文章

C# 启动外部程序的几种常用方法汇总

1. 启动外部程序,不等待其退出. 2. 启动外部程序,等待其退出. 3. 启动外部程序,无限等待其退出. 4. 启动外部程序,通过事件监视其退出. 实现代码如下: // using System.Diagnostics; private string appName = "calc.exe"; /// <summary> /// 1. 启动外部程序,不等待其退出 /// </summary> private void button1_Click(object

C# 启动外部程序的几种方法

1. 启动外部程序,不等待其退出. 2. 启动外部程序,等待其退出. 3. 启动外部程序,无限等待其退出. 4. 启动外部程序,通过事件监视其退出. // using System.Diagnostics; private string appName = "calc.exe"; /// <summary> /// 1. 启动外部程序,不等待其退出 /// </summary> private void button1_Click(object sender,

C#启动外部程序(进程)

通过调用Process类可以启动系统内部(环境变量里的)或者指定位置的程序,例如: Process.Start("notepad");//启动记事本 Process.Start("iexplore", "www.baidu.com");//打开ie 百度 //打开指定目录的文件 ProcessStartInfo strInfo = new ProcessStartInfo(fileName); Process p = new Process();

在启动Windows Process Activation Service时,出现错误13:数据无效

在启动Windows Process Activation Service时,出现错误13:数据无效 1.错误原因: 当Windows Process Activation Service从C:\Windows\system32\inetsrv\config\applicationHost.config中读取configuration数据时,数据收到了损坏,错误消息是:Configuration file is not well-formed XML,数据无效. 2.解决方法: 将c:\inet

启动外部程序

启动外部程序我们可以使用函数Winexec.ShellExecute和ShellExecuteEx.我推荐大家使用函数ShellExecute,因为它既灵活,又简单.看看下面的例子,用法就清楚了: *: 启动一个程序 ShellExecute(Handle,"open",(LPCSTR)"d:\\模拟程序.exe",NULL,NULL,SW_SHOW); * 启动记事本 (因为记事本在系统路径下,所以不必写完整的路径名了): ShellExecute(Handle,

IIS启动失败,启动Windows Process Activation Service时,出现错误13:数据无效 ;HTTP 错误 401.2 - Unauthorized 由于身份验证头无效,您无权查看此页

1.解决:“启动Windows Process Activation Service时,出现错误13:数据无效” 将c:\inetpub\history文件夹中的这个applicationHost.config文件,替换掉c:\windows\system32\inetsrv\config中的applicationHost.config,如果在c:\inetpub\history文件夹中有好几个类似CFGHISTORY_00000000的文件夹,则选择最新的文件夹中的applicationHos

Unity启动事件-监听:InitializeOnLoad

[InitializeOnLoad] :在启动Unity的时候运行编辑器脚本  官方案例: using UnityEngine; using UnityEditor; [InitializeOnLoad] public class Startup { static Startup() { Debug.Log("Up and running"); } } 在启动Unity的时候打印一句话. e.g. siki: using UnityEditor; using UnityEngine;

奇技之VIM:win下的gvim启动外部程序如何不弹出黑屏

在windows下一般都是用的sourceinsight,到也好用,但偶而也玩玩vim.source insight执行外部命令,可以在设置中定义一个自定义键,gvim 当然也很好搞哪,冒号加!就可以了,也可以在配置vimrc中加一个快捷键,比如我加了 F11.但直接vim启动程会先弹出一个cmd窗口,里面显示这个程序的返回值什么的,有没有办法去掉了,在我的反复尝试下,发现是可以的,那就是不要直接调这个程序,而是用 start + 程序名 的方式调用. 比如我这里配置好后,F11打开explor

ubuntu14.04安装bodhi桌面系统后,unity启动界面改变,如何还原

按一下 ctrl + alt + f1 # 出現 tty11. sudo service lxdm stop或sudo /etc/init.d/lxdm stop如果出現錯誤訊息 不理它 繼續2. sudo apt-get install --reinstall ubuntu-desktop3. sudo dpkg-reconfigure lightdm選擇 lightdm4. sudo reboot看看 有沒有 改善