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();

  • 相关阅读:
    史上最强验证
    Yii2 return redirect()
    一次线上问题引发的思考
    一次前端体验优化
    RSA For PHP
    判断是否字符串是否是JSON
    过滤Xss
    Yii2 中日志的记录
    Yii2 中禁用csrf校验
    开始。
  • 原文地址:https://www.cnblogs.com/net-study/p/3165264.html
Copyright © 2011-2022 走看看