A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 史柯 中级黑马   /  2015-8-26 16:17  /  207 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. public class ByteArrayStreamDemo {
  2.         public static void main(String[] args) throws IOException {
  3.                 ByteArrayOutputStream baos = new ByteArrayOutputStream();
  4.                 for (int x = 0; x < 10; x++) {
  5.                         baos.write(("hello" + x).getBytes());
  6.                 }
  7.                 byte[] bys = baos.toByteArray();

  8.                 ByteArrayInputStream bais = new ByteArrayInputStream(bys);

  9.                 int by = 0;
  10.                 while ((by = bais.read()) != -1) {
  11.                         System.out.print((char) by);
  12.                 }
  13.         }
  14. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马