百度空间 | 百度首页 
 
查看文章
 
String InputStream
2009年11月02日 星期一 下午 07:49

//String转inputStream
1. String --> InputStream
InputStream String2InputStream(String str){
    ByteArrayInputStream stream = new ByteArrayInputStream(str.getBytes());
    return stream;
}

2. InputStream --> String
String inputStream2String(InputStream is){
    BufferedReader in = new BufferedReader(new InputStreamReader(is));
    StringBuffer buffer = new StringBuffer();
    String line = "";
    while ((line = in.readLine()) != null){
      buffer.append(line);
    }
    return buffer.toString();

InputStream inputStream =
postMethod.getResponseBodyAsStream();
BufferedReader in = new BufferedReader(new InputStreamReader(inputStream));
String xml = FileCopyUtils.copyToString(in);

====================================

   try {
    int len = request.getContentLength();
    byte buffer[];
    buffer = new byte[len];
    ServletInputStream in = request.getInputStream();
    int total = 0;
    for (int once = 0; total < len && once >= 0; total += once) {
     once = in.readLine(buffer, total, len);
    }
System.out.println(new String(buffer,"utf-8"));

======================

*
   try {
    InputStream is = request.getInputStream();
    byte buf[] = new byte[3000];
    is.read(buf);
System.out.println(new String(buf,"utf-8"));
   } catch (IOException e) {
   
   }

=============================

        int len = request.getContentLength();
        byte buffer[];
        buffer = new byte[len];
        ServletInputStream in = request.getInputStream();
        int total = 0;
        for (int once = 0; total < len && once >= 0; total += once) {
         once = in.readLine(buffer, total, len);
        }
       
        String temp=new String(buffer,"utf-8");

============================

/**********************************************************************/  
   ByteArrayOutputStream byteOutput= new ByteArrayOutputStream();
        try {       
        BufferedInputStream bufferInput = null;
        bufferInput = new BufferedInputStream(is);
            if(bufferInput==null){
            System.out.println("No data!");
            }
            int length;
            int size = 4096;           
            byte buf[] = new byte[size];
            byteOutput.reset();
            while ((length = bufferInput.read(buf, 0, size)) != -1) {
             byte[] temp = new byte[length];
             for (int i = 0; i < length; i++) {
                 temp[i] = buf[i];
             }
            byteOutput.write(temp);
            }
        } catch (Exception e) {
           e.printStackTrace();
        }      

        String data=byteOutput.toString();


类别:技术_java | 添加到搜藏 | 浏览() | 评论 (0)
 
最近读者:
 
网友评论:
发表评论:
姓 名:
网址或邮箱: (选填)
内 容:
验证码: 请点击后输入四位验证码,字母不区分大小写
      

     

©2009 Baidu