i want decode some content of an .eml-Mail-File. The File contains Strings like "Gesch=C3=A4ftsbedingungen", it shoult be > "Geschäftsbedingungen"
reader = new InputStreamReader(new FileInputStream(path));
BufferedReader in = new BufferedReader(reader);
while ((line = in.readLine()) != null)
{
System.out.println(line);
}
Im not sure how i do that. I try to use "MimeUtility", but i do not get along so.
MimeUtility test;
System.out.println(test.decode(line));