zoukankan      html  css  js  c++  java
  • C#中启动外部应用程序

    C#中我们可以通过Process类直接启动外部应用程序

    代码如下:

                        Process p = new Process();
                        p.StartInfo.FileName = "cmd.exe"; //打开cmd
                        p.StartInfo.UseShellExecute = false;
                        p.StartInfo.RedirectStandardInput = true;
                        p.StartInfo.RedirectStandardOutput = true;
                        p.StartInfo.RedirectStandardError = true;
                        p.StartInfo.CreateNoWindow = true;
                        p.StartInfo.Arguments = "/c "+"ping baidu.com“;//给打开的程序设置参数

                        p.Start();
                        p.Close();
                        p.Dispose();

  • 相关阅读:
    背包解法
    第十六周周总结
    软件工程个人课程总结
    学期课后个人总结
    spring事务
    梦断代码03
    团队冲刺的第二十四天
    第十五周周总结
    百度输入法评价
    找到水王
  • 原文地址:https://www.cnblogs.com/net-study/p/3165264.html
Copyright © 2011-2022 走看看