* 字符数组:
* 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数组和字符串包装吗
|