Java Utililty Methods UTF to String

List of utility methods to do UTF to String

Description

The list of methods to do UTF to String are organized into topic(s).

Method

StringgetISOString(String src)
get ISO String
try {
    return new String(src.getBytes("UTF-8"), "ISO8859-1");
} catch (UnsupportedEncodingException e) {
    e.printStackTrace();
    return src;