Java String Decode decode(String text)

Here you can find the source of decode(String text)

Description

decode

License

LGPL

Declaration

public static String decode(String text) throws UnsupportedEncodingException 

Method Source Code


//package com.java2s;
//License from project: LGPL 

import java.io.UnsupportedEncodingException;

import javax.mail.internet.MimeUtility;

public class Main {
    public static String decode(String text) throws UnsupportedEncodingException {
        return MimeUtility.decodeText(text);
    }/*  w w w.  j a  v  a 2 s .com*/
}

Related

  1. decode(String s, String encoding)
  2. decode(String str)
  3. decode(String str)
  4. decode(String str, String encoding)
  5. decode(String string, String encoding)
  6. decode(String value, String encoding)
  7. decode3(String str)
  8. decodeString(String s)
  9. decodeString(String s, String charset)