container.java 275 B

1234567891011121314
  1. import java.net.URL;
  2. public class container {
  3. public static void main(String[] args) {
  4. try {
  5. new URL("https://google.com").openStream(); // force a CA certificate lookup
  6. System.exit(0);
  7. }
  8. catch (Exception e) {
  9. e.printStackTrace();
  10. }
  11. System.exit(1);
  12. }
  13. }