こんにちは、この BufferedInputStream を文字列に変換したいと思います。これどうやってするの?
BufferedInputStream in = new BufferedInputStream(sktClient.getInputStream() );
String a= in.read();
こんにちは、この BufferedInputStream を文字列に変換したいと思います。これどうやってするの?
BufferedInputStream in = new BufferedInputStream(sktClient.getInputStream() );
String a= in.read();
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);
apache commons IOUtils を使用することをお勧めします
String text = IOUtils.toString(sktClient.getInputStream());
次のコードを入力してください
結果を教えて
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 "";
}
}
ありがとう、かりやちゃん
すべてを自分で書きたくない場合(実際には書きたくない場合)-それを行うライブラリを使用してください。
Apachecommons-ioはまさにそれを行います。
より細かく制御したい場合は、IOUtils.toString(InputStream)またはIOUtils.readLines(InputStream)を使用します。