一. String 转换为InputStream

String str = "String 与 inputStream转换";

InputStream ins1 = new ByteArrayInputStream(str.getBytes());

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

二. InputStream 转为 String

方法一:利用bufferedReader

   1: public String convertToString(InputStream is){

   2:         BufferedReader bReader = new BufferedReader(new InputStreamReader(is));

   3:         StringBuffer buffer = new StringBuffer();

   4:         String line = null;

   5:         try {

   6:             while((line = bReader.readLine())!=null){

   7:                 buffer.append(line);

   8:             }

   9:         } catch (IOException e) {

  10:             // TODO Auto-generated catch block

  11:             e.printStackTrace();

  12:         }finally{

  13:             try {

  14:                 bReader.close();

  15:             } catch (IOException e) {

  16:                 // TODO Auto-generated catch block

  17:                 e.printStackTrace();

  18:             }

  19:         }

  20:         return buffer.toString();

  21:     }

方法二:

   1: public String convertToString(InputStream is){

   2:         StringBuffer buffer = new StringBuffer();

   3:         byte[] b = new byte[1024];

   4:         try {

   5:             for(int n; (n = is.read(b))!=-1;)

   6:                 buffer.append(new String(b,0,n));

   7:             return buffer.toString();

   8:         } catch (IOException e) {

   9:             // TODO Auto-generated catch block

  10:             e.printStackTrace();

  11:         }finally{

  12:             try {

  13:                 is.close();

  14:             } catch (IOException e) {

  15:                 // TODO Auto-generated catch block

  16:                 e.printStackTrace();

  17:             }

  18:         }

  19:     }

方法三:

   1: public String convertToString(InputStream is){

   2:         ByteArrayOutputStream os = new ByteArrayOutputStream();

   3:         int i = -1;

   4:         try {

   5:             while((i = is.read())!=-1){

   6:                 os.write(i);

   7:             }

   8:             return os.toString();

   9:         } catch (IOException e) {

  10:             // TODO Auto-generated catch block

  11:             e.printStackTrace();

  12:             return null;

  13:         }finally{

  14:             try {

  15:                 os.close();

  16:             } catch (IOException e) {

  17:                 // TODO Auto-generated catch block

  18:                 e.printStackTrace();

  19:             }

  20:         }

  21:     }

inputStream 与 String 的互相转换的更多相关文章

  1. InputStream和OutputStream与String之间的转换

    //1.字符串转inputstream String str="aaaaa"; InputStream in = new ByteArrayInputStream(str.getB ...

  2. apache.commons.io.IOUtils: 一个很方便的IO工具库(比如InputStream转String)

    转换InputStream到String, 比如 //引入apache的io包 import org.apache.commons.io.IOUtils; ... ...String str = IO ...

  3. 关于InputStream 和String对象之间的相互转换

    代码如下: package com.xin.stream; import java.io.BufferedReader; import java.io.ByteArrayInputStream; im ...

  4. Java中InputStream和String之间的转化

    https://blog.csdn.net/lmy86263/article/details/60479350 在Java中InputStream和String之间的转化十分普遍,本文主要是总结一下转 ...

  5. [技巧篇]19.InputStream与String,Byte之间互转[转载]

    import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOExceptio ...

  6. InputStream与String,Byte之间互转

    import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOExceptio ...

  7. 将输入流InputStream转换为String

    public static String convertStreamToString(InputStream is) { /* * To convert the InputStream to Stri ...

  8. C#中char[]与string之间的转换

    string 转换成 Char[] string ss = "abcdefg"; char[] cc = ss.ToCharArray(); Char[] 转换成string st ...

  9. C字符串和C++中string的区别 &&&&C++中int型与string型互相转换

    在C++中则把字符串封装成了一种数据类型string,可以直接声明变量并进行赋值等字符串操作.以下是C字符串和C++中string的区别:   C字符串 string对象(C++) 所需的头文件名称 ...

随机推荐

  1. springboot中使用@Value读取配置文件

    一.配置文件配置 直接配置 在src/main/resources下添加配置文件application.properties 例如修改端口号 #端口号 server.port=8089 分环境配置 在 ...

  2. Redis简介,安装和配置,停止,卸载(图解方式)

    Redis是一个Key-value的数据结构存储系统,可以已数据库的形式,缓存系统,消息处理器使用,它支持的存储类型很多,例如,String(字符串),list(列表),set(集合),zset(有序 ...

  3. Linux下使用《du》命令查看某文件及目录的大小

    du -ah --max-depth=1     这个是我想要的结果  a表示显示目录下所有的文件和文件夹(不含子目录),h表示以人类能看懂的方式,max-depth表示目录的深度. du -sh 目 ...

  4. nohup command > myout.file 2>&1 &

    nohup command > myout.file 2>&1 &

  5. 探究c++默认初始化

    按照c++ primer 5th第40页的描述,如果定义变量时没有指定初值,则变量被默认初始化,此时变量被赋予了“默认值”. 根据变量定义的位置,分为两种情况: 1.定义于任何函数体之外的变量被初始化 ...

  6. linux中的调试知识---基础gdb和strace查看系统调用信息,top性能分析,ps进程查看,内存分析工具

    1 调试一般分为两种,可以通过在程序中插入打印语句.有点能够显示程序的动态过程,比较容易的检查出源程序中的有关信息.缺点就是效率比较低了,而且需要输入大量无关的数据. 2 借助相关的调试工具. 3 有 ...

  7. 【Data Structure & Algorithm】求1+2+…+n

    求1+2+-+n 题目:求1+2+-+n,要求不能使用乘除法.for.while.if.else.switch.case等关键字以及条件判断语句(A ? B : C). 分析:此题没多少实际意义,因为 ...

  8. 4-1逻辑与运算符介绍 & 4-2逻辑或运算符介绍

    后面括号内的(n++)不运算了. 4-2逻辑或运算符介绍

  9. Apache CXF简介

    Apache CXF是一个开源的,全功能的,容易使用的Web服务框架.CXF是由Celtix和XFire合并,在Apache软件基金会共同完成的.CXF的名字来源于"Celtix" ...

  10. vue的踩坑路

    ------>axios模拟get json一直拿不到文件,先把data放到根目录,再去dev-server.js(就是npm执行的那个文件)里面设置静态资源访问路径app.use('/data ...