vote up 2 vote down star
1

My Java standalone application gets a URL (which points to a file) from the user and I need to hit it and download it. The problem I am facing is that I am not able to encode the HTTP URL address properly...

Example:

URL:  http://search.barnesandnoble.com/booksearch/first book.pdf

java.net.URLEncoder.encode(url.toString(), "ISO-8859-1");

returns me:

http%3A%2F%2Fsearch.barnesandnoble.com%2Fbooksearch%2Ffirst+book.pdf

But, what I want is

http://search.barnesandnoble.com/booksearch/first%20book.pdf

(space replaced by %20)

I guess URLEncoder is not designed to encode HTTP URLs... The JavaDoc says "Utility class for HTML form encoding"... Is there any other way to do this?

flag

6 Answers

vote up 2 vote down check

The URI class can help; in the documentation of URL you find

Note, the URI class does perform escaping of its component fields in certain circumstances. The recommended way to manage the encoding and decoding of URLs is to use URI

Use one of the Constructors with more than one argument, like:

URI uri = new URI(
    "http", 
    "search.barnesandnoble.com", 
    "/booksearch/first book.pdf",
    null);
URL url = uri.toURL()
//or String request = uri.toString();

(the single-argument constructor of URI does NOT escape illegal characters)

link|flag
Great! This way it works without adding a bunch of commons libraries... Thanks – Sudhakar R Apr 10 at 3:42
vote up 2 vote down

Nitpicking: a string containing a whitespace character by definition is not a URI. So what you're looking for is code that implements the URI escaping defined in Section 2.1 of RFC 3986.

link|flag
+1. This is the real problem. You don't want an algorithm to URL-encode, you want a means of fixing up a broken URL. – bobince Apr 7 at 11:39
vote up 4 vote down

URLEncoding can encode HTTP URLs just fine, as you've unfortunately discovered. The string you passed in, "http://search.barnesandnoble.com/booksearch/first book.pdf", was correctly and completely encoded into a URL-encoded form. You could pass that entire long string of gobbledigook that you got back as a parameter in a URL, and it could be decoded back into exactly the string you passed in.

It sounds like you want to do something a little different than passing the entire URL as a parameter. From what I gather, you're trying to create a search URL that looks like "http://search.barnesandnoble.com/booksearch/whateverTheUserPassesIn". The only thing that you need to encode is the "whateverTheUserPassesIn" bit, so perhaps all you need to do is something like this:

String url = "http://search.barnesandnoble.com/booksearch/" + 
       URLEncoder.encode(userInput,"UTF-8");

That should produce something rather more valid for you.

link|flag
vote up 2 vote down

URLEncoder.encode() encodes everything, including the forward slashes. These 2 threads may be of interest to you in finding a solution:

http://stackoverflow.com/questions/665354/whats-wrong-with-my-url-encoding

http://stackoverflow.com/questions/591694/url-encoded-slash-in-url

link|flag
vote up -2 vote down

I think you will have to do the encoding yourself. In this case, you could just use the replace method of the String object to replace a space with %20.

link|flag
This isn't a good way to do this! – Eddie Apr 7 at 3:49
vote up 7 vote down

Yeah URL encoding is going to encode that string so that it would be passed properly in a url to a final destination. For example you could not have http://xxx.com?url=http://yyy.com. UrlEncoding the parameter would fix that parameter value.

So i have two choices for you:

  1. Do you have access to the path separate from the domain? If so you may be able to simply UrlEncode the path. However, if this is not the case then option 2 may be for you.

  2. Get commons-httpclient-3.1. This has a class URIUtil:

    System.out.println(URIUtil.encodePath("http://xxx.com/x y", "ISO-8859-1"));

This will output exactly what you are looking for, as it will only encode the path part of the URI.

FYI, you'll need commons-codec and commons-logging for this method to work at runtime.

link|flag

Your Answer

Get an OpenID
or

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