首页 > 代码库 > ByteArrayInputStream和ByteArrayOutputStream
ByteArrayInputStream和ByteArrayOutputStream
public class ByteArrayTest { public static void main(String[] args) throws IOException { read(write()); } //read public static void read(byte[] b) throws IOException{ InputStream is = new BufferedInputStream(new ByteArrayInputStream(b)); byte fush[] = new byte[1024]; int len = 0; while((len=is.read(fush))!=-1){ System.out.println(new String(fush, 0,len)); } is.close(); } //write public static byte[] write() throws IOException{ String s = "what the fuck write"; byte[] b = s.getBytes(); ByteArrayOutputStream out = new ByteArrayOutputStream(); int len=b.length; out.write(b, 0, len); byte[] bytes = out.toByteArray(); out.close(); return bytes; } }
ByteArrayInputStream和ByteArrayOutputStream
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。