标题:process的问题?
只看楼主
随风云
Rank: 1
等 级:新手上路
威 望:1
帖 子:263
专家分:0
注 册:2007-6-28
 问题点数:0 回复次数:1 
process的问题?

using System;
using System.Diagnostics;
namespace cmd
{
/// <summary>
/// Class1 的摘要说明。
/// </summary>
class Class1
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main(string[] args)
{
//
// TODO: 在此处添加代码以启动应用程序
//
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.StartInfo.UseShellExecute = false;
p.StartInfo.RedirectStandardInput = true;
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.RedirectStandardError = true;
p.StartInfo.CreateNoWindow = true;
p.Start();
p.StandardInput.WriteLine("ping 192.168.1.40");
p.StandardInput.WriteLine("exit");
string strRst = p.StandardOutput.ReadToEnd();
}
}
}
ping的IP没错但什么结果也没有的,请高手指教!

搜索更多相关主题的帖子: process 
2007-07-02 09:41
随风云
Rank: 1
等 级:新手上路
威 望:1
帖 子:263
专家分:0
注 册:2007-6-28
得分:0 

问题已搞定,不劳大家了


真的想象风一样去流浪!
2007-07-03 17:27



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-151936-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.743804 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved