public static byte[] readInputStream(InputStream inStream) throws Exception {
try {
ByteArrayOutputStream outStream = new ByteArrayOutputStream();
byte[] buffer = new byte[1024];
int len = 0;
while ((len = inStream.read(buffer)) != -1) {
outStream.write(buffer, 0, len);
}
inStream.close();
return outStream.toByteArray();
}catch (Exception e){
e.printStackTrace();
throw new Exception(e);
}
}
This is the way to deal with it all over the Internet. Writing to death may cross the line
I don’t know if there is any other way to deal with it
The best way is to use Apache commons IO's IOUtils.toByteArray(inputStream), a one-line solution.