Получить списокиз InputStream - PullRequest
0 голосов
/ 28 сентября 2019

Я пытаюсь получить List<byte[]> от InputStream.Я отправляю HTTP-запрос API, который возвращает List<byte[]>, и я хочу получить этот список из тела контента.

HttpPost httpPost = new HttpPost(endPoint);
CloseableHttpClient httpclient = HttpClients.createDefault();
httpPost.setEntity(new ByteArrayEntity(ReqBody));
CloseableHttpResponse response = httpclient.execute(httpPost);
System.out.println(response.getStatusLine());
System.out.println(response.getEntity().getContentType());

return response.getEntity().getContent();
...