4

我正在使用 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. 我需要输出来检查 SMS 是否发送成功。

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

    函数 exe(ByVal 文件名,ByVal 参数)

    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
    

    结束功能

4

4 回答 4

3

尝试这个:

    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
于 2011-06-19T03:40:32.050 回答
1

要将输出发送到 .txt 文件,(我能找到的最佳解决方案)

代替

xCmd = "cmd.exe /c echo msgcontent "| c:\gnokii\gnokii.exe --sendsms 12345678 > file.txt"

xCmd = "cmd.exe /c echo msgcontent "| c:\gnokii\gnokii.exe --sendsms 12345678 2> file.txt"
于 2011-06-20T00:24:37.773 回答
0

我可能会建议这样的事情,我自己。这类似于其他人发布的内容,但我认为它提供了更多功能。

Imports System.IO
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Shell("cmd.exe /c " & TextBox1.Text + " > c:\temp\output.txt")
    Dim read As System.IO.StreamReader
    read = File.OpenText("c:\temp\output.txt")
    RichTextBox1.Clear()
    Do Until read.EndOfStream
        RichTextBox1.Text += read.ReadLine & vbCrLf
    Loop
    RichTextBox1.Select(RichTextBox1.Text.Length, 0)
    RichTextBox1.ScrollToCaret()
End Sub
End Class
于 2014-02-25T19:28:23.217 回答
0

您可以使用这个 100% 的作品,但它只会向您显示结果

如何在 vb.net 中显示 shell 结果:

'create 1 textbox1
'create 1 button1
'create 1 richtextbox1
'in the start up directory of this program make a file could 123.text
'------------------------------------------------------------------------
Dim read As System.IO.StreamReader
read = File.OpenText(Application.StartupPath & "\123.text")

Shell("cmd.exe /c" & TextBox1.Text + ">123.text")
Do Until read.EndOfStream
    RichTextBox1.Text = read.ReadLine & vbCrLf
Loop
'--------------------------------------------------------------------------
'you can add on the top to create the file if it does not exists,   

If IO.File.Exists(Application.StartupPath & "\123.text") = False Then
    IO.File.Create(Application.StartupPath & "\123.text")
End If
'-------------------------------------------------------------------------

该代码也可在此链接http://pastebin.com/iEhv61jG获得

于 2013-02-22T23:14:49.203 回答