System.Diagnostics.Process

作者:追风剑情 发布于:2018-4-10 21:07 分类:C#

示例:找出某程序的PID


  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Text.RegularExpressions;
  6. using System.Threading.Tasks;
  7.  
  8. namespace Test3
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. System.Diagnostics.Process process = new System.Diagnostics.Process();
  15. process.StartInfo.FileName = "netstat";
  16. process.StartInfo.Arguments = "-a -n -o -p TCP";
  17. process.StartInfo.UseShellExecute = false;
  18. process.StartInfo.RedirectStandardOutput = true;
  19. //process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
  20. //process.StartInfo.CreateNoWindow = true;
  21. process.Start();
  22.  
  23. string output = process.StandardOutput.ReadToEnd();
  24. string[] lines = output.Split('\n');
  25.  
  26. process.WaitForExit();
  27.  
  28. Console.WriteLine(output);
  29.  
  30. foreach (string line in lines)
  31. {
  32. string[] tokens = Regex.Split(line, "\\s+");//按不可见字符分割
  33. if (tokens.Length > 4)
  34. {
  35. int test = -1;
  36. int.TryParse(tokens[5], out test);
  37.  
  38. if (test > 1023) //排除系统进程
  39. {
  40. try
  41. {
  42. var p = System.Diagnostics.Process.GetProcessById(test);
  43. if (p.ProcessName == "Unity")
  44. {
  45. Console.WriteLine("Unity PID: {0}", test);
  46. break;
  47. }
  48. }
  49. catch
  50. {
  51.  
  52. }
  53. }
  54. }
  55. }
  56. Console.ReadKey();
  57. }
  58. }
  59. }


运行测试

1111.jpg

标签: C#

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号