import sun.misc.*; import java.awt.*; import java.io.*; public class UCDecode { public static void main(String[] args) { if (args.length >= 2) { try { InputStream is = new FileInputStream(args[0]); OutputStream os = new FileOutputStream(args[1]); UCDecoder ucdc = new UCDecoder(); ucdc.decodeBuffer(is, os); } catch (IOException e) { System.err.println(e); } } // end if } // end main }