java判断、测试ip和端口是否可连接 服务是否可连接

import java.io.IOException;
import java.net.InetSocketAddress;
import java.net.Socket;

@RestController
public class NetCheckController {
    @GetMapping("/testConnect")
    public boolean hello(@RequestParam(value = "ip") String ip, @RequestParam(value = "port") int port) {
    
        Socket socket = new Socket();
        try {
            socket.connect(new InetSocketAddress(ip, port), 1000);
            return true;
        } catch (IOException exception) {
            return false;
        } finally {
            try {
                socket.close();
            } catch (IOException e) {
                return false;
            }
        }
    }
}
可以使用 Java 的 Runtime 类和 Process 类来执行 telnet 命令,并判断是否连接成功。下面是一个示例代码: ```java import java.io.IOException; public class TelnetTester { public static void main(String[] args) { String ip = "127.0.0.1"; // 要测试IP 地址 int port = 80; // 要测试端口号 String command = "telnet " + ip + " " + port; try { Process process = Runtime.getRuntime().exec(command); // 获取 telnet 命令的输出结果 String output = readOutput(process); // 判断 telnet 命令的输出结果是否包含 "Escape character is '^]'",如果包含则表示连接成功 if (output.contains("Escape character is '^]'")) { System.out.println("Telnet connection to " + ip + ":" + port + " succeeded."); } else { System.out.println("Telnet connection to " + ip + ":" + port + " failed."); } } catch (IOException e) { e.printStackTrace(); } } private static String readOutput(Process process) throws IOException { StringBuilder output = new StringBuilder(); int bytesRead; byte[] buffer = new byte[1024]; while ((bytesRead = process.getInputStream().read(buffer)) > 0) { output.append(new String(buffer, 0, bytesRead)); } return output.toString(); } } ``` 在上面的代码中,我们首先构造了要执行的 telnet 命令,然后使用 Runtime 类的 exec() 方法执行该命令。接着,我们通过 readOutput() 方法获取 telnet 命令的输出结果,并判断是否包含指定的字符串来判断连接是否成功。最后,根据连接成功与否输出相应的结果。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

飘然生

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值