I have code where an url is decoded in php. Then parts from it are used to create a String containing Key-Value-Pairs (like Param=EncodedPartOfUrl&Param2=EncondedPartofUrl&...) with (urlencode)
Now I want to decode it in Java. Can I use the URLDecoder for it or might there be a incompatibility? I also guess that in PHP there is no encoding scheme specified (when I understand the docs correctly) - how do I solve this then in java? Don't use a specified econding scheme (which is deprecated in Java 6 for URLDecoder)?