C#CMD Ping时间戳

时间:2016-07-14 11:25:09

标签: c# ping

我正在试图弄清楚如何在C#

中获得ping时间戳

我还尝试了System.DateTime.Today.ToString(“MM-dd-yyyy”)但是它在程序错误的主机中说出来。

此时ping显示

表单设计:

enter image description here

我尝试使用此代码:

ping -t 127.0.0.1|cmd /q /v /c "(pause&pause)>nul & for /l %a in () do (set /p "data=" && echo(!date! !time! !data!)&ping -n 2 127.0.0.1>nul"

我的代码:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Threading;
using System.IO;
using System.Diagnostics;
using System.Net;

namespace PingProgramm
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        Thread th;
        private void button1_Click(object sender, EventArgs e)
        {
            th = new Thread(thread1);
            th.Start();
        }

        public void thread1()
        {
            try
            {
                string command = "/c ping -t " + textBox1.Text + "|cmd /q /v /c (pause&pause)>nul & for /l %a in () do (set /p " + "data" + '=' + " && echo(!date! !time! !data!)&ping -n 2" + textBox1.Text + ">nul";
                ProcessStartInfo procStartInfo = new ProcessStartInfo("CMD", command);
                Process proc = new Process();
                proc.StartInfo = procStartInfo;
                procStartInfo.RedirectStandardOutput = true;
                procStartInfo.RedirectStandardInput = true;
                procStartInfo.RedirectStandardError = true;
                procStartInfo.UseShellExecute = false;
                procStartInfo.CreateNoWindow = true;
                proc.OutputDataReceived += new DataReceivedEventHandler(proc_OutputDataReceived);
                proc.Start();
                proc.BeginOutputReadLine();
                proc.WaitForExit();
            }
            catch (Exception)
            {
                //if an error occurs with in the try block, it will handled here.
            }
        }
        void proc_OutputDataReceived(object sender, DataReceivedEventArgs e)
        {
            if (stop)
            {
                var proc = (Process)sender;

                stop = false; // allows you to spawn a new thread after stopping the first
                proc.SynchronizingObject = this; // puts the form in charge of async communication
                proc.Kill(); // terminates the thread
                proc.WaitForExit(); // thread is killed asynchronously, so this goes here.

            }
            if (e.Data != null)
            {
                string newLine = e.Data.Trim() + Environment.NewLine;
                MethodInvoker append = () => {
                    richTextBox1.Text += newLine;
                    if (checkBox1.Checked)
                    {
                        WriteLog(newLine);
                    }
                };
                richTextBox1.BeginInvoke(append);
            }
        }
        bool firstTime = true;
        private void textBox1_Click(object sender, EventArgs e)
        {
            if (firstTime)
            {
                firstTime = false;
                textBox1.Clear();
            }
        }

        bool stop = false;
        private void button2_Click(object sender, EventArgs e)
        {
            stop = true;
        }

        public static void WriteLog(string strLog)
        {
            StreamWriter log;
            FileStream fileStream = null;
            DirectoryInfo logDirInfo = null;
            FileInfo logFileInfo;

            string logFilePath = "C:\\Logid\\";
            logFilePath = logFilePath + "Log-" + System.DateTime.Today.ToString("MM-dd-yyyy") + "." + "txt";
            logFileInfo = new FileInfo(logFilePath);
            logDirInfo = new DirectoryInfo(logFileInfo.DirectoryName);
            if (!logDirInfo.Exists) logDirInfo.Create();
            if (!logFileInfo.Exists)
            {
                fileStream = logFileInfo.Create();
            }
            else
            {
                fileStream = new FileStream(logFilePath, FileMode.Append);
            }
            log = new StreamWriter(fileStream);
            log.WriteLine(strLog);
            log.Close();
        }

        private void checkBox1_CheckedChanged(object sender, EventArgs e)
        {

        }
    }
}

我调试了它,但它没有说任何错误或其他东西。

1 个答案:

答案 0 :(得分:0)

您没有看到任何错误,因为执行命令的线程会吞下异常。

    public void thread1()
    {
        try
        {
            string command = "/c ping -t " + textBox1.Text + "|cmd /q /v /c (pause&pause)>nul & for /l %a in () do (set /p " + "data" + '=' + " && echo(!date! !time! !data!)&ping -n 2" + textBox1.Text + ">nul";
            ProcessStartInfo procStartInfo = new ProcessStartInfo("CMD", command);
            Process proc = new Process();
            proc.StartInfo = procStartInfo;
            procStartInfo.RedirectStandardOutput = true;
            procStartInfo.RedirectStandardInput = true;
            procStartInfo.RedirectStandardError = true;
            procStartInfo.UseShellExecute = false;
            procStartInfo.CreateNoWindow = true;
            proc.OutputDataReceived += new DataReceivedEventHandler(proc_OutputDataReceived);
            proc.ErrorDataReceived+= new DataReceivedEventHandler(proc_ErrorDataReceived); // add error output
            proc.Start();
            proc.BeginOutputReadLine();
            proc.BeginErrorReadLine(); // begin read error output
            proc.WaitForExit();
        }
        catch (Exception ex) // add ex here so you can look into it.
        {   // <== Breakpoint here
            //if an error occurs with in the try block, it will handled here.
        }
    }

有多种方法可以调试它。

  1. 在上面所述的行中设一个断点。

  2. 启用所有例外,请转到“调试 - >例外设置”,然后检查公共语言运行时例外,直到完全检查完毕。

  3. 此外,Process还提供了您应该检查的ErrorDataReceived。