读取标准输出问题
我想执行一个返回“GEORGE SMITH”等字符串的 JavaScript。我想阅读该信息,但是当您运行此代码时,我得到:“指定的可执行文件不是有效的 Win32 应用程序”
我如何捕获此信息?我尝试从 .bat 调用 javascript,但无法从那里获取输出。有人可以帮助我吗?
这是代码:
{
Process proc = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
startInfo.RedirectStandardOutput = true;
startInfo.FileName = "cardholder.js";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
proc.StartInfo = startInfo;
proc.Start();
nombreApellido = proc.StandardOutput.ReadToEnd();
proc.Close();
proc.Dispose();
}
I want to execute a javascript that returns a string like 'GEORGE SMITH'. I want to read that information but when y run this code I get: " The specified executable is not a valid Win32 application"
How can i capture this information?. I tried to call the javascript from a .bat but I cannot get the output from there. Can anyone help me?.
This is the code:
{
Process proc = new Process();
ProcessStartInfo startInfo = new ProcessStartInfo();
startInfo.CreateNoWindow = true;
startInfo.UseShellExecute = false;
startInfo.RedirectStandardOutput = true;
startInfo.FileName = "cardholder.js";
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
proc.StartInfo = startInfo;
proc.Start();
nombreApellido = proc.StandardOutput.ReadToEnd();
proc.Close();
proc.Dispose();
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
javascript 文件不是可执行文件,您无法运行它。
您需要运行 wscript.exe 并将 cardholder.js 作为命令行参数传递:
javascript file is not an executable and you cannot run it.
You need to run wscript.exe and pass cardholder.js as a command line argument:
cardholder.js 不是可执行文件。您的 startInfo.FileName 需要是可执行文件。您将需要一个 JavaScript 解释器来“运行”.js 文件。
cardholder.js is not an executable. Your startInfo.FileName needs to be an executable. You will need a javascript interpreter to 'run' the .js file.