Search:

Type: Posts; User: efluvio

Search: Search took 0.15 seconds.

  1. [SOLVED] Re: How to decode ENCODING=QUOTED-PRINTABLE encoded data?

    I've solved it using the org.apache.commons.codec package from Apache. The source java files are available for download:
    Codec - Home

    It contains the method...
  2. [SOLVED] Re: How to decode ENCODING=QUOTED-PRINTABLE encoded data?

    It doesn't work if there are some characters (that are not supposed to be in a URL):


    Exception in thread "main" java.lang.IllegalArgumentException: URLDecoder: Illegal hex characters in escape...
  3. [SOLVED] Re: How to decode ENCODING=QUOTED-PRINTABLE encoded data?

    Yes, but convert all the cases.

    You can check here a webpage that does online conversion, but I would like to do it with software: Encode/Decode Quoted Printable - Webatic
  4. [SOLVED] Re: How to decode ENCODING=QUOTED-PRINTABLE encoded data?

    The source is a contact VCARD, and each entry goes on one line if not quoted printable but goes in one or more is used the ENCODING=QUOTED-PRINTABLE string, indicating an ending with the '='...
  5. [SOLVED] How to decode ENCODING=QUOTED-PRINTABLE encoded data?

    I want to decode data with the encoding ENCODING=QUOTED-PRINTABLE;CHARSET=UTF-8:

    to standard text. For example =0D=0A turns into \n and so on, but I was unable to find a specific standard java...
Results 1 to 5 of 5