package com.hz.weep;

import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;

public class InputStreamReadStringDemos {
	public static void main(String[] args) {
		String target = new String("String");
		InputStream ins = new ByteArrayInputStream(target.getBytes());
		
		//存字符串长度.
		int i = 0;
		//存inputStrrem中的数组.
		byte[] targetArray = null;
		try {
			//取出inputStream中字节长度.
			int byteSize = ins.available();
			//创建制定长度的字节数组.
			targetArray = new byte[byteSize];
			//获取inputStream中的字符数组,并且得到返回的长度.
			i = ins.read(targetArray, 0, byteSize);
		} catch (IOException e) {
			e.printStackTrace();
		}
		
		//讲得到的字符数组还原成字符串.
		String result = new String(targetArray);
		//打印到控制台.
		System.out.println("读取的字符串是: " + result);

	}
}
最近下载更多
levitation  LV7 2012年8月30日
最代码官方  LV168 2012年8月30日
最近浏览更多
Dominick  LV14 2022年12月14日
 LV10 2021年6月12日
hdf999  LV12 2021年4月3日
w19991213  LV2 2020年9月21日
cpla1998  LV8 2020年5月21日
yanxiaoai  LV6 2020年4月13日
k麝神k  LV10 2020年1月6日
幻羽揚  LV4 2019年11月18日
梓嘉一心一意ZYPeng丶  LV5 2019年7月5日
2602275348  LV12 2019年1月3日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友