VB.net 循环阅读行在一行后停止



好的,我在尝试执行循环时遇到了问题,我有一个包含服务器列表的变量,当我尝试循环它时,它只循环一次并停止

我在

下面有一部分代码,试图让你知道我在做什么,尽管我已经删除了任何指向我工作的公司的数据。

代码的第一部分,从域中获取服务器列表

Dim oStartInfo As New ProcessStartInfo("c:windowssystem32dsquery.exe", "computer " & cnameodd & oservpath & " -o rdn")
        oStartInfo.UseShellExecute = False
        oStartInfo.RedirectStandardOutput = True
        oStartInfo.RedirectStandardError = True
        oStartInfo.CreateNoWindow = True
        oProcess.StartInfo = oStartInfo
        oProcess.Start()
        Using oStreamReader As System.IO.StreamReader = oProcess.StandardOutput
            sOutput = oStreamReader.ReadToEnd()

sOutPut 的输出如下所示(通过 debug.write("servers: " & sOutPut( 在下面的代码中显示(

"SERVERxafe01"
"SERVERxafe02"
"SERVERxafe03"
"SERVERxafe04"
"SERVERxafe05"
"SERVERxafe06"

然后我试图让输出为每个服务器循环一个命令

If sOutput = "" Then
                    Debug.Write("No Servers Found")
                Else
                    Debug.Write("Servers: " & sOutput)
                    Dim reader As New StringReader(sOutput.Replace(Chr(34), ""))
                    While True
                        Dim line = reader.ReadLine()
                        Debug.Write("Line is" & line)
                        If line IsNot Nothing Then
                            Dim command As String = " user " & user & " /server:" & line
                            Dim pStartInfo As New ProcessStartInfo("c:windowssysnativequery.exe", command)
                            pStartInfo.UseShellExecute = False
                            pStartInfo.RedirectStandardOutput = True
                            pStartInfo.RedirectStandardError = True
                            pStartInfo.CreateNoWindow = True
                            pProcess.StartInfo = pStartInfo
                            pProcess.Start()
                            Using pStreamReader As System.IO.StreamReader = pProcess.StandardError
                                sOutput = pStreamReader.ReadToEnd()
                                Debug.Write(sOutput & "Error " & command)
                            End Using
                            Using pStreamReader As System.IO.StreamReader = pProcess.StandardOutput
                                sOutput = pStreamReader.ReadToEnd()
                                Debug.Write(sOutput & "Output" & command)
                                Return sOutput
                            End Using
                        End If
                    End While
                End If
            End Using

在代码中,我让它尝试通过执行 debug.write 来输出它当前正在处理的行,但是每当我运行它时,我只看到正在使用 sOutPut 的第一行,而没有其他行被循环,所以基本上只有 debug.write 的输出("行是:"和行(是

Line is : SERVERxafe01

所以我从来没有让它通过其他服务器循环>

只是编写代码来尝试使我的工作更有效率,但我不认为自己是程序员,因为我很容易感到沮丧,并且在专注于代码时接听电话会变得有点前卫

所以欢迎任何想法,谢谢。

尝试替换

    while true
    '
    '
    '
    '
    '
    End While

    Do
    '
    '
    '
    '
    '
    Loop While line <> ""

在尝试查找更多信息后,我发现了一个帖子,该帖子显示了退出循环的不同技术,而不是我正在寻找的内容,但使用我的语句在底部发现了引起我注意的东西

Return sOutput

退出模块,使其停止循环

因此,通过修改,它现在可以工作,我不得不将返回政治家放在 if 语句中,以便它仅在获得所需数据时才运行返回

  Using oStreamReader As System.IO.StreamReader = oProcess.StandardOutput
        sOutput = oStreamReader.ReadToEnd()
        Dim server = sOutput.Replace(Chr(34), "")
        For Each line As String In server.Split(vbCrLf)
            Dim command As String = " " & user & " /server:" & line.Replace(vbLf, "")
            Dim pStartInfo As New ProcessStartInfo("c:windowssysnativequser.exe", command)
            pStartInfo.UseShellExecute = False
            pStartInfo.RedirectStandardOutput = True
            pStartInfo.RedirectStandardError = True
            pStartInfo.CreateNoWindow = True
            pProcess.StartInfo = pStartInfo
            pProcess.Start()
            Using pStreamReader As System.IO.StreamReader = pProcess.StandardError
                sOutput = pStreamReader.ReadToEnd()
                If sOutput.Contains("SESSIONNAME") = True Then
                    Return "Found on Citrix Server: " & line & vbCrLf & sOutput
                End If
            End Using
            Using pStreamReader As System.IO.StreamReader = pProcess.StandardOutput
                sOutput = pStreamReader.ReadToEnd()
                If sOutput.Contains("SESSIONNAME") = True Then
                    Return "Found on Citrix Server: " & line & vbCrLf & sOutput
                End If
            End Using
        Next
    End Using

相关内容

  • 没有找到相关文章

最新更新