I am trying to unescape a URL in java.
Is there some tool or library for that ?
example : filter=Screen+Refresh+Rate%7C120HZ%5EScreen+Size%7C37+in.+to+42+in.
I need this in the normal form.
URLDecoder.decode(String s,"utf-8") will work if s is encoded in application/x-www-form-urlencoded.
URLDecoder.decode(String s,"utf-8")
s
application/x-www-form-urlencoded
String s = URLDecoder.decode("filter=Screen+Refresh+Rate%7C120HZ%5EScreen+Size%7C37+in.+to+42+in.", "utf-8"); System.out.println(s);
Output
filter=Screen Refresh Rate|120HZ^Screen Size|37 in. to 42 in.
Sign up using Google
Sign up using Facebook
Sign up using Stack Exchange
By posting your answer, you agree to the privacy policy and terms of service.
tagged
asked
1 year ago
viewed
686 times
active