展开全部
using System.IO;
using System.IO.Compression;
Process p = null;
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();
strOutput="doc命令";
p.StandardInput.WriteLine(strOutput);
p.StandardInput.WriteLine("exit");
while (p.StandardOutput.EndOfStream)
{
strOutput = p.StandardOutput.ReadLine();
Console.WriteLine(strOutput);
}
p.WaitForExit();
p.Close();
using System.IO.Compression;
Process p = null;
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();
strOutput="doc命令";
p.StandardInput.WriteLine(strOutput);
p.StandardInput.WriteLine("exit");
while (p.StandardOutput.EndOfStream)
{
strOutput = p.StandardOutput.ReadLine();
Console.WriteLine(strOutput);
}
p.WaitForExit();
p.Close();
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要使用这个类,使它和有main方法的程序放在一起,
其次要使用这个类,简单的方法是:转到这个类的代码区域,然后点击菜单项的“生成”-“重新生成解决方案”,之后这个类就可以被main方法中的程序调用了。
其次要使用这个类,简单的方法是:转到这个类的代码区域,然后点击菜单项的“生成”-“重新生成解决方案”,之后这个类就可以被main方法中的程序调用了。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
System.Diagnostics.ProcessStartInfo Info = new System.Diagnostics.ProcessStartInfo("winrar.exe");
//设置外部程序的启动参数(命令行参数)
Info.Arguments = " e " + fileName + " " +destinationPath;
// 隐藏外部程序
Info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
去参考资料那里看看吧 其实道理应该是一样的吧! 把 winrar.exe 该成 cmd.exe
//设置外部程序的启动参数(命令行参数)
Info.Arguments = " e " + fileName + " " +destinationPath;
// 隐藏外部程序
Info.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
去参考资料那里看看吧 其实道理应该是一样的吧! 把 winrar.exe 该成 cmd.exe
参考资料: http://www.cnblogs.com/froster/archive/2005/03/30/128811.html
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
启动DOS命令行:
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.Start();
string strOutPut;
///执行Dos命令:dir
p.StandardInput.WriteLine("dir");
///截获Dos输出
while (p.StandardOutput.EndOfStream)
{
strOutPut = p.StandardOutput.ReadLine();
}
p.WaitForExit();
p.Close();
Process p = new Process();
p.StartInfo.FileName = "cmd.exe";
p.Start();
string strOutPut;
///执行Dos命令:dir
p.StandardInput.WriteLine("dir");
///截获Dos输出
while (p.StandardOutput.EndOfStream)
{
strOutPut = p.StandardOutput.ReadLine();
}
p.WaitForExit();
p.Close();
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询