vote up 0 vote down star

I am currently calling the following line of code:

java.net.URL connection_url = new java.net.URL("http://:/path");

and when it executes I get the above exception. Any ideas as to why this is happening?

flag

60% accept rate
I'm not getting that same exception with the exact same code. – jjnguy Sep 12 '08 at 20:21
What version of Java is causing the exception? – John Meagher Sep 13 '08 at 0:08

3 Answers

vote up 1 vote down

Your code works perfectly fine for me:

public static void main(String[] args) {
	try {
		java.net.URL connection_url = new java.net.URL("http://:/path");
		System.out.println("Instantiated new URL: " + connection_url);
	}
	catch (MalformedURLException e) {
		e.printStackTrace();
	}
}

Instantiated new URL: http://:/path

Sure you have the right line of code?

link|flag
vote up 1 vote down

That url string looks like it's invalid. Sure it's not supposed to be 'http://path'? Or are the server & port blank?

link|flag
vote up 0 vote down

As a side note, you should be using URI because Java URL class is screwed up. (The equals method I believe)

link|flag
Not sure why the parent got modded down, but it might be a good idea to use URI in place of URL depending on what you're doing. See: symphonious.net/2007/03/… – Sam Merrell Sep 13 '08 at 16:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.