吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2017|回复: 4
收起左侧

[其他转载] C# 获取指定端口的 IP

[复制链接]
Cool_Breeze 发表于 2021-3-5 21:40
[C#] 纯文本查看 复制代码
using System;
using System.IO;
using System.Diagnostics;

class CreateDir
{
    static void Main()
    {   
        string port = ":58205";
        
        try
        {
            Process netstat = new Process();
            netstat.StartInfo.FileName = "netstat";
            // netstat.StartInfo.CreateNoWindow = true;
            netstat.StartInfo.UseShellExecute = false;
            netstat.StartInfo.RedirectStandardOutput = true;
            netstat.StartInfo.Arguments = "-n";
            
            netstat.Start();
            StreamReader reader = netstat.StandardOutput;
            string result = reader.ReadToEnd();
            foreach (var line in result.Split('\n'))
            {
                if (line.IndexOf(port) > -1)
                {
                    Console.Write(line.Split(' ')[6].Split(':')[0]);
                }
                
            }
        }
        catch
        {
            Console.Write("Error");
        }
    }
}


1.png

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

sghzlx 发表于 2021-3-5 23:05
学习一下
LongYuan11 发表于 2021-3-14 19:37
 楼主| Cool_Breeze 发表于 2021-3-14 20:04
本帖最后由 Cool_Breeze 于 2021-3-14 20:06 编辑
LongYuan11 发表于 2021-3-14 19:37
string port = ":58205";是您写的随机端口吗?

回复错了。指定端口,可以改动
LongYuan11 发表于 2021-3-14 22:53
Cool_Breeze 发表于 2021-3-14 20:04
回复错了。指定端口,可以改动

ok,我去试试看
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 20:34

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表