On 17/05/2013 03:17, Weijun Wang wrote:
which supports the new HttpURLPermission type introduced in
8010464: Evolve java networking same origin policy
http://hg.openjdk.java.net/jdk8/tl/jdk/rev/93a268759ec3
Not looked through it thoroughly, but are we sure we want url.toString()?
T
On 15/10/2012 18:20, Mike Duigou wrote:
We should also nuke gopher and netdoc (in sun.net.www.protocol package)
I am not sure if mailto should continue as there are better solutions.
I think it's worth pointing out that in practice URL is not used just to
open a connection. It's also used as
On 14/09/2011 16:46, Kurchi Hazra wrote:
+ Class[] cl = new Class[2];
+ cl[0] = SocketAddress.class;
+ cl[1] = Integer.TYPE;
+ Class clazz = impl.getClass();
I have to say, I think that would read better as:
Class[] cl = { SocketAddress.class, int.class };
Class clazz = impl
the JRE. (Although I guess it
could become a module under Jigsaw (and OSGi).)
Tom Hawtin