Split rconlib and mcping

This commit is contained in:
2026-09-04 00:19:17 +08:00
parent 23e7a827db
commit 350b900aaa
38 files changed
+350 -268

No files matched your search

@@ -0,0 +1,33 @@
/*
* Copyright © 2026 RTAkland
* Author: RTAkland
* Date: 2026/9/3
*/
package test;
import cn.rtast.mcping.McPing;
import cn.rtast.mcping.PingResponse;
import cn.rtast.mcping.ServerType;
import org.junit.Test;
public class TestPingInJava {
@Test
public void testPingJava() {
String testJavaHost = "org.mc-complex.com";
PingResponse resp = McPing.mcping(testJavaHost, 25565);
System.out.println(resp);
}
@Test
public void testPingBedrock() {
String testBedrockHost = "play.wildnetwork.net";
PingResponse resp = McPing.mcping(testBedrockHost, 19132, ServerType.Bedrock);
System.out.println(resp.getContent());
System.out.println(resp.getLatency());
System.out.println(resp.toBedrockResponse());
}
}