现在我有一个应用程序,用户可以将一些参数传递给进程并在文本框和/或文本文件中获取输出。但是,输出的格式与通过命令提示符运行这些进程时的格式相同。它们只是逐行阅读并放入没有适当的段落和间距。有没有办法保留原始输出?以下两个相关功能:
//function called via a button to write to textbox
// userInput is the textbox's name
private void call_Process(object sender, EventArgs e)
{
Process process = new Process();
process.StartInfo.FileName = selectedFilePath;
process.StartInfo.Arguments = string.Format("{0}", userInput.Text);
process.StartInfo.UseShellExecute = false;
process.StartInfo.RedirectStandardError = true;
process.StartInfo.RedirectStandardOutput = true;
process.StartInfo.CreateNoWindow = true;
try
{
process.Start();
}
catch (Exception err)
{
MessageBox.Show(err.Message);
}
while (!process.StandardOutput.EndOfStream)
{
string line = process.StandardOutput.ReadLine();
processOutput.Text += line;
}
}
//function called via button to write to textfile
private void write_To_File(object sender, EventArgs e)
{
OpenFileDialog openfile = new OpenFileDialog();
openfile.InitialDirectory = "c:\\";
openfile.Filter = "All Files (*.*)|*.*";
openfile.FilterIndex = 1;
if (openfile.ShowDialog() == true)
{
TextWriter tw = new StreamWriter(openfile.FileName);
tw.WriteLine(processOutput.Text);
tw.Close();
}
}
答案 0 :(得分:2)
根据@aschipfl的建议:
对processOutput
控件和
processOutput.Text += (line + Environment.NewLine);