vote up 0 vote down star

I just came across something like this:

String sample = "somejunk+%3cfoobar%3e+morestuff";

Printed out, sample looks like this:

somejunk+<foobar>+morestuff

How does that work? U+003c and U+003e are the Unicode codes for the less than and greater than signs, respectively, which seems like more than a coincidence, but I've never heard of Java automatically doing something like this. I figured it'd be an easy thing to pop into Google, but it turns out Google doesn't like the percent sign.

flag

2  
Java doesn't do something like this. It looks like you're having an URL encoded String. – Joachim Sauer Sep 16 at 14:45
Yes, I would guess you saw it on a web page rather than in a source file which actually compiled :-) – Vinay Sajip Sep 16 at 14:48
How are you printing out and if stdout to what terminal? – Mark Sep 16 at 14:49

3 Answers

vote up 1 vote down check

You can do something like this,

	String sample = "somejunk+%3cfoobar%3e+morestuff";
	String result = URLDecoder.decode(sample.replaceAll("\\+", "%2B"), "UTF8");
link|flag
Turns out that's close, it was actually being used as a Wicket ExternalLink in my case. (wicket.apache.org/docs/1.4/…) – Lord Torgamus Sep 16 at 18:27
vote up 1 vote down

That string is probably URL encoded You'd decode that in java using the URLDecoder

String res = java.net.URLDecoder.decode(sample, "UTF8");
link|flag
vote up 1 vote down

Java does support Unicode escapes in char and String literals, but not URL encoding.

The Unicode escapes use '\uXXXX', where XXXX is the Unicode point in hexadecimal.

Curious tidbit: The grammar allows 'u' to occur multiple times, so that '\uuuuuuuu0041' is a valid Unicode escape (for 'A').

link|flag
+1 for the curious tidbit. – Lord Torgamus Sep 16 at 18:14

Your Answer

Get an OpenID
or

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