Is your ISO-8859-1 content stored in a file? If so, try this:
FileInputStream fis = new FileInputStream("iso8859fileName");
InputStreamReader isr = new InputStreamReader(fis, "ISO-8859-1");
FileOutputStream fos = new FileOutputStream("utf8fileName");
OutputStreamWriter osw = new OutputStreamWriter(fos, "UTF-8");