码迷,mamicode.com
首页 > 其他好文 > 详细

String与InputStream相互转换

时间:2014-05-25 23:39:21      阅读:286      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   c   code   java   

1.String to InputStream

String str = "String与InputStream相互转换";

 

InputStream in_nocode = new ByteArrayInputStream(str.getBytes());
    InputStream in_withcode = new ByteArrayInputStream(str.getBytes("UTF-8"));

2.InputStream to String

    这里提供几个方法。

方法1:

bubuko.com,布布扣
public String convertStreamToString(InputStream is) {
        BufferedReader reader = new BufferedReader(new InputStreamReader(is));
        StringBuilder sb = new StringBuilder();
        String line = null;
        try {
            while ((line = reader.readLine()) != null) {
                sb.append(line + "/n");
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                is.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return sb.toString();
    }
bubuko.com,布布扣

方法2:

bubuko.com,布布扣
public String inputStream2String(InputStream in) throws IOException {
        StringBuffer out = new StringBuffer();
        byte[] b = new byte[4096];
        for (int n; (n = in.read(b)) != -1;) {
            out.append(new String(b, 0, n));
        }
        return out.toString();
    }
bubuko.com,布布扣

方法3:

bubuko.com,布布扣
public static String inputStream2String(InputStream is) throws IOException {
        ByteArrayOutputStream baos = new ByteArrayOutputStream();
        int i = -1;
        while ((i = is.read()) != -1) {
            baos.write(i);
        }
        return baos.toString();
    }
bubuko.com,布布扣

String与InputStream相互转换,布布扣,bubuko.com

String与InputStream相互转换

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/sunhan/p/3750163.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!