关于此主题的stackoverflow已经有类似的问题,但是,应用这些答案并没有产生我希望的结果.我有麻烦理解为什么一方面,我似乎必须设置UseShellExecute = true;实际上获得一个新窗口,这使得RedirectStandardinput = true成为不可能;反之亦然.但是,通过新进程输入和输出但在同一控制台提示符下工作正常,除了视觉混乱(当你写,输出附加到你的wirtten但没有发送输入,这是非常不舒服).
那么,是否仍然可以使用单独的命令提示输入管理员(我猜是这样),或者我是否必须设置另一种形式的进程间通信并创建一个单独的程序(使用Main-function和all)?
这是我目前关于流程生成的代码.请注意,如果您想了解整体构图,它会嵌入一个不太简化的上下文中:
bool canExecute = false;Process consoleProcess;processstartinfo startInfo = new processstartinfo();OperatingSystem os = Environment.Osversion;switch (os.Platform){ case PlatformID.MacOSX: canExecute = false; break; case PlatformID.Unix: canExecute = true; startInfo.filename = "/bin/bash"; break; case PlatformID.Win32NT: canExecute = true; startInfo.filename = "cmd.exe"; break; case PlatformID.Win32S: canExecute = true; startInfo.filename = "cmd.exe"; break; case PlatformID.Win32windows: canExecute = true; startInfo.filename = "cmd.exe"; break; case PlatformID.WinCE: canExecute = true; startInfo.filename = "cmd.exe"; break; case PlatformID.XBox: canExecute = false; break;}startInfo.RedirectStandardinput = true;startInfo.UseShellExecute = false;consoleProcess = new Process();consoleProcess.StartInfo = startInfo;consoleProcess.Start();if (canExecute){ using (StreamWriter sw = consoleProcess.Standardinput) { String line; while ((line = Console.Readline()) != null) { // do something useful with the user input } }}
先感谢您!
解决方法 只有内置的.NET Process类才能做到这一点.它不支持正确的选项.问题是,默认情况下,新的windows控制台进程始终会继承其父进程的已分配控制台.当您使用UseShellExecute = true; (Process的默认值),这会导致Process类(当然)使用ShellExecuteEx()方法.由于新进程是通过windows Shell而不是进程创建的,因此没有可继承的控制台,因此进程可以自行创建.但是,如果直接创建进程,则会获得默认的控制台继承行为.
但是,当然,由于您要重定向标准I / O,因此无法使用UseShellExecute = true;.您必须将其设置为false.
解决这个问题的唯一方法是直接通过p / invoke调用CreateProcess(),这样就可以传递你需要的标志以及Process类没有提供控制方法的标志.有问题的旗帜是CREATE_NEW_CONSolE.传递给函数调用,它告诉CreateProcess()函数为新进程创建一个单独的控制台.
有关此行为的更多信息以及如何根据您的需要进行调整,请参阅MSDN的Creation of a Console.
当然,这会打开一个全新的蠕虫病毒,因为您将不再拥有Process类的直接便利来帮助重定向I / O.从长远来看,您可能会发现只需编写一个瘦的非控制台代理程序来运行实际程序就更容易了.这样,您可以启动非控制台代理,当然这不会继承您当前的控制台,然后让它启动您实际想要运行的程序.这样做并不是非常优雅(其中最重要的是,因为代理不是控制台程序,你将无法通过stdio轻松地重定向I / O),但它相当简单,让你保持管理 – 代码世界,使用更易于使用的API.
请在下面找到双向代理(编译为“windows应用程序”,而不是“控制台应用程序”)的示例,其中包含父进程和子进程.子进程简单地向控制台回送任何输入内容.父进程将任何输入内容写入代理.代理向父发送从父进程收到的任何内容,并向父进程发送从子进程收到的任何内容.所有进程都将空行输入视为终止条件.
出于您自己的目的,您可能会使用单向管道(即代理的PipeDirection.In和父进程的PipeDirection.Out),并且只使用Standardinput进行代理重定向.这样,所有输出仍将出现在子进程的窗口中. (双向示例更多用于概念验证……显然,如果输入和输出都是定向的,那么强制子进程进入其自己的窗口没有多大意义:)).
代理:(ConsoleProxy.exe)
class Program{ static voID Main(string[] args) { namedPipeClIEntStream pipe = new namedPipeClIEntStream(".",args[1],PipeDirection.InOut,PipeOptions.Asynchronous); pipe.Connect(); Process process = new Process(); process.StartInfo.filename = args[0]; process.StartInfo.UseShellExecute = false; process.StartInfo.RedirectStandardinput = true; process.StartInfo.RedirectStandardOutput = true; process.Start(); using (TextReader reader = new StreamReader(pipe)) using (TextWriter writer = new StreamWriter(pipe)) { Task readerTask = ConsumeReader(process.StandardOutput,writer); string line; do { line = reader.Readline(); if (line != "") { line = "proxIEd write: " + line; } process.Standardinput.Writeline(line); process.Standardinput.Flush(); } while (line != ""); readerTask.Wait(); } } static async Task ConsumeReader(TextReader reader,TextWriter writer) { char[] rgch = new char[1024]; int cch; while ((cch = await reader.ReadAsync(rgch,rgch.Length)) > 0) { writer.Write("proxIEd read: "); writer.Write(rgch,cch); writer.Flush(); } }}
子进程:(ConsoleApplication1.exe)
class Program{ static voID Main(string[] args) { Console.Title = "ConsoleApplication1"; string line; while ((line = Promptline("Enter text: ")) != "") { Console.Writeline(" Text entered: \"" + line + "\""); } } static string Promptline(string prompt) { Console.Write(prompt); return Console.Readline(); }}
家长流程:
class Program{ static voID Main(string[] args) { namedPipeServerStream pipe = new namedPipeServerStream("ConsoleProxyPipe",1,PipeTransmissionMode.Byte,PipeOptions.Asynchronous); Console.Title = "Main Process"; Process process = new Process(); process.StartInfo.filename = "ConsoleProxy.exe"; process.StartInfo.Arguments = "ConsoleApplication1.exe ConsoleProxyPipe"; process.StartInfo.UseShellExecute = false; process.StartInfo.CreateNowindow = true; process.Start(); pipe.WaitForConnection(); using (TextReader reader = new StreamReader(pipe)) using (TextWriter writer = new StreamWriter(pipe)) { Task readerTask = ConsumeReader(reader); string line; do { line = Console.Readline(); writer.Writeline(line); writer.Flush(); } while (line != ""); readerTask.Wait(); } } static async Task ConsumeReader(TextReader reader) { char[] rgch = new char[1024]; int cch; while ((cch = await reader.ReadAsync(rgch,rgch.Length)) > 0) { Console.Write(rgch,cch); } }}总结
以上是内存溢出为你收集整理的c# – 如何创建新的命令提示符窗口并重定向用户输入?全部内容,希望文章能够帮你解决c# – 如何创建新的命令提示符窗口并重定向用户输入?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)