You want to use sun.tools.native2ascii to reverse convert the text.
new sun.tools.native2ascii.Main().convert(new String[]{"-reverse", new File("README.TXT"), convertedFile});
So something like this will do it.
public static void main(String[] args) throws Exception{
File convertedFile = new File("converted.txt");
new sun.tools.native2ascii.Main().convert(new String[]{"-reverse", new File("README.TXT"), convertedFile});
FileInputStream fr = new FileInputStream(convertedFile);
BufferedReader br = new BufferedReader(new InputStreamReader(fr,"UTF-8"));
String s="";
while((s=br.readLine())!=null){
System.out.println(s);
}
}