Skip to content

Instantly share code, notes, and snippets.

@zalizko
zalizko / TestInternet.java
Created June 1, 2020 10:23
Testing internet connection
import java.net.HttpURLConnection;
import java.net.URL;
import java.time.Duration;
import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;
public class TestInternet {
public static void main(String[] args) throws Exception {
new TestInternet().run();
}