code
package com.themixray;
import java.util.logging.Logger;
public class Main {
public static void main(String[] args) {
Logger log = Logger.getLogger("LOG");
long st = System.currentTimeMillis();
MCQuery mcQuery = new MCQuery("0.tcp.ngrok.io", 12601);
QueryResponse response = mcQuery.basicStat();
float ping = (float)System.currentTimeMillis()-st;
log.info("ping "+Float.toString(ping));
}
}
project tree
