Groovy 언어 소스: // Filename: testHexView_03.groovy // // Execute: groovy testHexView_03.groovy [filename] // // Date: 2013. 7. 28. import java.io.File; import java.io.FileInputStream; import java.io.IOException; public class TestHexView_03 { public static void printUsage() { System.out.println("groovy testHexView_03.groovy [filename]"); } public static String toHex(byte b) { String s = ""; int x1,..