gpt4 book ai didi

vb.net - 如何从 cmd shell 读取 VB.NET 中的 cmd 输出?

转载 作者:行者123 更新时间:2023-12-02 10:03:51 28 4
gpt4 key购买 nike

我正在使用 gnokii 发送短信。

我的 VB 代码:

Dim xCmd As String
xCmd = "cmd.exe /c echo msgcontent "| c:\gnokii\gnokii.exe --sendsms 12345678"
Shell(xCmd)

注意事项:

  1. 我确实尝试将输出重定向到 .txt 文件,但 .txt 文件似乎为空。此外,程序可能必须每秒发送多条短信,因此创建 .txt 是不可行的。

  2. Process.Start() 不可行,因为我必须检查 gnokii.exe 是否正在运行。

  3. 我需要输出来检查短信是否发送成功。

  4. 我尝试使用(下面的代码),但它也不起作用;没有显示输出。

    函数exe(ByVal fileName, ByVal args)

    Dim p As Process = New Process
    Dim output As String

    With p
    .StartInfo.CreateNoWindow = True
    .StartInfo.UseShellExecute = False
    .StartInfo.RedirectStandardOutput = True
    .StartInfo.FileName = fileName
    .StartInfo.Arguments = args
    .Start()
    output = .StandardOutput.ReadToEnd
    End With

    Return output

    结束函数

最佳答案

试试这个:

    Dim p As Process = New Process
Dim output As String

With p
.StartInfo.CreateNoWindow = True
.StartInfo.RedirectStandardOutput = True
.StartInfo.UseShellExecute = False
.StartInfo.FileName = fileName
.StartInfo.Arguments = args
.Start()
output = .StandardOutput.ReadToEnd
.WaitForExit()
End With

Return output

关于vb.net - 如何从 cmd shell 读取 VB.NET 中的 cmd 输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6397435/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com