Mega Code Archive

 
Categories / Java by API / Java Lang
 

New String(byte[] ascii, int hibyte)

/*  * Output: a = ABCDEFGHIJ     */ public class MainClass {   static byte a[] = { 65, 66, 67, 68, 69, 70, 71, 72, 73, 74 };   static byte b[] = { 77, 77, 77, 77, 77, 77, 77, 77, 77, 77 };   public static void main(String args[]) {   System.out.println("a = " + new String(a, 0));   } }