Apache CXF API

org.apache.cxf.common.util
Class UrlUtils

java.lang.Object
  extended by org.apache.cxf.common.util.UrlUtils

public final class UrlUtils
extends Object

Utility class for decoding and encoding URLs


Method Summary
static String pathDecode(String value)
          URL path segments may contain '+' symbols which should not be decoded into ' ' This method replaces '+' with %2B and delegates to URLDecoder
static String urlDecode(String value)
           
static String urlDecode(String value, String enc)
          Decodes using URLDecoder - use when queries or form post values are decoded
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

urlDecode

public static String urlDecode(String value,
                               String enc)
Decodes using URLDecoder - use when queries or form post values are decoded

Parameters:
value - value to decode
enc - encoding
Returns:

urlDecode

public static String urlDecode(String value)

pathDecode

public static String pathDecode(String value)
URL path segments may contain '+' symbols which should not be decoded into ' ' This method replaces '+' with %2B and delegates to URLDecoder

Parameters:
value - value to decode
Returns:

Apache CXF API

Apache CXF