黑马程序员技术交流社区

标题: string串问题 [打印本页]

作者: 高阳    时间: 2013-1-2 00:48
标题: string串问题
* 字符数组:
* CharArrayReader
* CharArrayWriter
*
* 字符串:
* StringReader
* StringWriter
*/
public class ByteArrayStreamDemo {
public static void main(String[] args) throws IOException {
  ByteArrayInputStream bis = new ByteArrayInputStream("abcde".getBytes());
  ByteArrayOutputStream bos = new ByteArrayOutputStream();
  int num = 0;
  while ((num = bis.read()) != -1) {
   bos.write(num);
  }
  String str = bos.toString();
  System.out.println(str);
  // 释放资源 不需要释放,我们这次操作的数据就是在内存中转了一圈。
  // bos.close();
  // bis.close();
}
能yoga数组和字符串包装吗

作者: 轻松过关    时间: 2013-1-2 00:58
能yoga数组和字符串包装吗?
问题没看懂!
作者: 郝福明    时间: 2013-1-2 11:49
的确没看懂问题




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2