C#调用EXE


1.问题意义

据说界面程序开发,首选C#(像lebview之类的也很好)
但是,能不能用其他语言开发核心代码,只用C#做界面?毕竟每种语言都有自己擅长的领域.

2.exe程序

比如有个example.exe,能接受4个参数.用cmd的调用方法是

example.exe "1" "a" "2" "3" 

3.C#调用方法

// 调用exe的函数 using System.Diagnostics; public bool StartProcess(string runFilePath, params string[] args) { string s = ""; foreach (string arg in args) { s = s + arg + " "; } s = s.Trim(); Process process = new Process();//创建进程对象 ProcessStartInfo startInfo = new ProcessStartInfo(runFilePath, s); // 括号里是(程序名,参数) process.StartInfo = startInfo; process.Start(); return true; } private void start_craw(object sender, EventArgs e) { string exe_path = "E:/example.exe"; // 被调exe string[] the_args = { "1","2","3","4"}; // 被调exe接受的参数 StartProcess(exe_path, the_args); } 

4.实战

 
界面设计

 
代码

给按键添加点击事件,点击事件触发start_craw函数


 
点击事件与函数关联

5.StartProcess更多的设置

public bool StartProcess(string runFilePath, params string[] args) { string s = ""; foreach (string arg in args) { s = s + arg + " "; } s = s.Trim(); Process process = new Process();//创建进程对象 ProcessStartInfo startInfo = new ProcessStartInfo(runFilePath, s); // 括号里是(程序名,参数) process.StartInfo = startInfo; //process.StartInfo.UseShellExecute = true; //是否使用操作系统的shell启动 //startInfo.RedirectStandardInput = true; //接受来自调用程序的输入 //startInfo.RedirectStandardOutput = true; //由调用程序获取输出信息 //startInfo.CreateNoWindow = true; //不显示调用程序的窗口 process.Start(); return true; } 

6.疑难解答

调用外部exe时,当这个exe运行出错时,会闪退,无法看清错误原因
解决:
直接去调试这个被调用的exe即可.



作者:xigua1234
链接:https://www.jianshu.com/p/43aa64992706
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM