BufferedInputStream To String Conversion? [duplica

2020-02-26 02:50发布

Possible Duplicate:
In Java how do a read/convert an InputStream in to a string?

Hi I want to put this BufferedInputStream into my string how can I do this?

BufferedInputStream in = new BufferedInputStream(sktClient.getInputStream() );
String a= in.read();

标签: java
5条回答
不美不萌又怎样
2楼-- · 2020-02-26 02:59
BufferedInputStream in = new BufferedInputStream(sktClient.getInputStream());
byte[] contents = new byte[1024];

int bytesRead = 0;
String strFileContents; 
while((bytesRead = in.read(contents)) != -1) { 
    strFileContents += new String(contents, 0, bytesRead);              
}

System.out.print(strFileContents);
查看更多
小情绪 Triste *
3楼-- · 2020-02-26 03:11

Please following code

Let me know the results

public String convertStreamToString(InputStream is)
                throws IOException {
            /*
             * To convert the InputStream to String we use the
             * Reader.read(char[] buffer) method. We iterate until the
    35.         * Reader return -1 which means there's no more data to
    36.         * read. We use the StringWriter class to produce the string.
    37.         */
            if (is != null) {
                Writer writer = new StringWriter();

                char[] buffer = new char[1024];
                try
                {
                    Reader reader = new BufferedReader(
                            new InputStreamReader(is, "UTF-8"));
                    int n;
                    while ((n = reader.read(buffer)) != -1) 
                    {
                        writer.write(buffer, 0, n);
                    }
                }
                finally 
                {
                    is.close();
                }
                return writer.toString();
            } else {       
                return "";
            }
        }

Thanks, Kariyachan

查看更多
家丑人穷心不美
4楼-- · 2020-02-26 03:20

With Guava:

new String(ByteStreams.toByteArray(inputStream),Charsets.UTF_8);

With Commons / IO:

IOUtils.toString(inputStream, "UTF-8")
查看更多
Summer. ? 凉城
5楼-- · 2020-02-26 03:22

I suggest you use apache commons IOUtils

String text = IOUtils.toString(sktClient.getInputStream());
查看更多
放荡不羁爱自由
6楼-- · 2020-02-26 03:22

If you don't want to write it all by yourself (and you shouldn't really) - use a library that does that for you.

Apache commons-io does just that.

Use IOUtils.toString(InputStream), or IOUtils.readLines(InputStream) if you want finer control.

查看更多
登录 后发表回答