Here you can find the source of openStream(URL url)
public static InputStream openStream(URL url)
//package com.java2s; //License from project: Apache License import java.io.IOException; import java.io.InputStream; import java.io.UncheckedIOException; import java.net.URL; public class Main { public static InputStream openStream(URL url) { try {/*from w ww . ja va 2 s . com*/ return url.openStream(); } catch (IOException e) { throw new UncheckedIOException(e); } } }