java ByteArrayInputStream和ByteArrayOutputStream基本操作

2014-11-23 22:09:24 · 作者: · 浏览: 0

\

import java.io.*;

public class ByteArrayDemo
{
	public static void main(String[] args)
	{
		String str="abcdefghijklmnopqrstuvwxyz";
		byte[] b=str.getBytes();
		ByteArrayInputStream in=new ByteArrayInputStream(b);
		ByteArrayOutputStream out=new ByteArrayOutputStream();
		
		try 
		{
			new ByteArrayDemo().transform(in, out);
			byte[] outb=out.toByteArray();
			System.out.println(new String(outb));
		} 
		catch (IOException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
	}
	public void transform(InputStream in,OutputStream out) throws IOException
	{
		int c=0;
		while((c=in.read())!=-1)
		{
			out.write((int)Character.toUpperCase((char)c));
		}
	}
}
\

程序中几个函数的相关说明< http://www.2cto.com/kf/ware/vc/" target="_blank" class="keylink">vc3Ryb25nPjwvcD4KPHA+PGltZyBzcmM9"https://www.cppentry.com/upload_files/article/76/1_9b6lt__.jpg" alt="\">