Mega Code Archive

 
Categories / Java by API / Java Io
 

New ByteArrayInputStream(byte[] buf, int offset, int length)

import java.io.ByteArrayInputStream; import java.io.IOException; public class Main {   public static void main(String args[]) throws IOException {     String tmp = "abcdefghijklmnopqrstuvwxyz";     byte b[] = tmp.getBytes();     ByteArrayInputStream input1 = new ByteArrayInputStream(b);     ByteArrayInputStream input2 = new ByteArrayInputStream(b, 0, 3);   } }