读取标准输出问题

发布于 2024-10-21 01:40:35 字数 655 浏览 5 评论 0原文

我想执行一个返回“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

沫雨熙 2024-10-28 01:40:35

javascript 文件不是可执行文件,您无法运行它。

您需要运行 wscript.exe 并将 cardholder.js 作为命令行参数传递:

startInfo.FileName = "wscript.exe";
startInfo.Arguments= "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:

startInfo.FileName = "wscript.exe";
startInfo.Arguments= "cardholder.js";
情绪 2024-10-28 01:40:35

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文