Class WebURLDecoder


  • public class WebURLDecoder
    extends java.lang.Object
    Since:
    MicroStrategy Web 7.3.1 or earlier
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static java.lang.String decode​(java.lang.String input, java.lang.String encodeFormat)  
      static java.lang.String doubleDecode​(java.lang.String input, java.lang.String encodeFormat)
      Decodes a double encoded string using a specific encoding scheme.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • decode

        public static java.lang.String decode​(java.lang.String input,
                                              java.lang.String encodeFormat)
                                       throws java.io.UnsupportedEncodingException
        Throws:
        java.io.UnsupportedEncodingException
      • doubleDecode

        public static java.lang.String doubleDecode​(java.lang.String input,
                                                    java.lang.String encodeFormat)
                                             throws java.io.UnsupportedEncodingException
        Decodes a double encoded string using a specific encoding scheme.
        Parameters:
        input - the input string to decode
        encodeFormat - the format of the string
        Returns:
        the decoded string
        Throws:
        java.io.UnsupportedEncodingException - thrown if named decoding is not supported
        Since:
        MicroStrategy Web 7.5.1
        See Also:
        WebURLEncoder.doubleEncode(String, String)