Java InputStream to String inputstream_to_string(InputStream in)

Here you can find the source of inputstream_to_string(InputStream in)

Description

Description of the Method

License

Open Source License

Parameter

Parameter Description
in PARAM

Exception

Parameter Description
IOException Throws

Return

Returns

Declaration

public static String inputstream_to_string(InputStream in) throws IOException 

Method Source Code

//package com.java2s;
/*//  ww  w  .ja  v  a2s  .  c  om
 * {{{ header & license
 * Copyright (c) 2004, 2005 Joshua Marinacci
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public License
 * as published by the Free Software Foundation; either version 2.1
 * of the License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.   See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 * }}}
 */

import java.io.*;

public class Main {
    /**
     * Description of the Method
     *
     * @param in PARAM
     * @return Returns
     * @throws IOException Throws
     */
    public static String inputstream_to_string(InputStream in) throws IOException {
        Reader reader = new InputStreamReader(in);
        StringWriter writer = new StringWriter();
        char[] buf = new char[1000];
        while (true) {
            int n = reader.read(buf, 0, 1000);
            if (n == -1) {
                break;
            }
            writer.write(buf, 0, n);
        }
        return writer.toString();
    }
}

Related

  1. inputStream2String(InputStream is)
  2. inputStream2String(InputStream is)
  3. inputStream2String(InputStream is)
  4. inputStream2String(InputStream is)
  5. inputStream2String(InputStream source)
  6. inputStreamAsString(InputStream is)
  7. inputStreamReaderToStringBuilder(InputStreamReader reader, StringBuilder builder)
  8. inputStreamToReaderToString(InputStream in)
  9. inputStreamtoStream(InputStream in)