无线&移动互联网技术研发

换位思考·····
posts - 19, comments - 53, trackbacks - 0, articles - 283
  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

String&InputStream的相互转化

Posted on 2010-02-03 22:15 Gavin.lee 阅读(411) 评论(0)  编辑  收藏 所属分类: java SE & EE
1.InputStream ---> String
            InputStream is = getMethod.getResponseBodyAsStream();
            BufferedReader br 
= new BufferedReader(new InputStreamReader(is, "UTF-8"));
            StringBuffer buffer 
= new StringBuffer();
            String str 
= "", response = "";
            
            
while((str = br.readLine())!=null){
                response 
=buffer.append(str).toString();
            }

2.String --->InputStream
InputStream stream = new ByteArrayInputStream("".getBytes());
ByteArrayInputStream 是InputStream 的子类

只有注册用户登录后才能发表评论。


网站导航: