如何解析从 ResponceEntity.getbody() 返回的文件输入流以写入 android 中的文件

How to parse fileinputstream returned from ResponceEntity.getbody() to write into a file in android

我想从 server.I 下载文件(.docx、.pdf、图像或任何类型)正在使用 spring-mvc REST API.By 使用 Resttemplate.exchange (...) 我以流的形式从服务器收到响应,但我无法解析 it.So 我应该怎么做并写入文件?

文件Return代码(服务器):

public ResponseEntity<?> downloadFile(..){
 if (downloadFile.exists()) {
      FileInputStream fileInputStream = new FileInputStream(downloadFile);
      return ResponseEntity.ok()
                          .contentLength(downloadFile.length())
                          .contentType(MediaType.parseMediaType("application/octet-stream"))
                          .body(newInputStreamResource(fileInputStream));}
 else {
        return responseEntity.status(HttpStatus.NOT_FOUND)
        .body(ErrorMsgWebapiUtil.AUTHORIZED_USER);
            }
                    }

服务器响应:

<200 OK,PNG ������ IHDR����8����û������Þ¢ø������sBIT3���� ��IDATxíÝ?'T����pþÖé������T* ����@8B����G¨������á��������#T����p ����P����*����@8B����G¨������á��������#T����p ����P����*����@8B����G¨������á����������#T����p

����P����*����@8B����G¨������á��������#T���� p ����P����*����@8B����G¨������á���� ¡����óÿ����0\§ÁzõK���� ����IEND®B`

代码在我的Android(客户端):

 try {
        mRespEntity = mRestTemplate.exchange(strFinal, HttpMethod.POST, mRequestEntity, String.class);
        mResponseCode = mRespEntity.getStatusCode().toString();

        if (mResponseCode.equals("200")) {

            String outdir = "sdcard/downloads/";

            int length = Integer.parseInt(mRespEntity.getHeaders().getContentLength() + "");
            inputStream = new BufferedInputStream((InputStream) mRespEntity.getBody()); //Here it Throughs Exception:java.lang.String cannot be cast to java.io.InputStream
            byte[] buffer = new byte[length];
            int read = 0;

            File dFile = new File(outdir, filename);

             fos = new DataOutputStream(new FileOutputStream(dFile));

            while ((read = inputStream.read(buffer)) != -1) {
                fos.write(buffer, 0, read);
            }

        }
    } catch (Exception e) {
        if (e != null) {
            e.printStackTrace();
            Log.e(TAG, "getFileFolderSyncData() Error:" + e.getMessage());
            return false;
        }

    } finally {

        // resetSSLFactory();

        if (inputStream != null) {
            try {
                inputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        if (fos != null) {
            try {
                // outputStream.flush();
                fos.flush();
                fos.close();
            } catch (IOException e) {
                e.printStackTrace();
            }

        }
    }

在行 inputStream = new BufferedInputStream((InputStream) mRespEntity.getBody());在这里通过例外:"java.lang.String cannot be cast to java.io.InputStream"

找到解决方案...

public String FileDownload(...){
     String url = ....;
            String res = ...;
            String outdir = ...;
            File outputFile = new File(outdir, filename);


            BufferedInputStream in = null;
            FileOutputStream fout = null;


            try {
                URL obj = new URL(url);
                HttpURLConnection con = (HttpURLConnection) obj.openConnection();

                con.setRequestMethod("POST");
                con.setRequestProperty("param1", value);//post parameters

                String urlParameters = ...;
                // Send post request
                con.setDoOutput(true);
                DataOutputStream wr = new DataOutputStream(con.getOutputStream());
                wr.writeBytes(urlParameters);
                wr.flush();
                wr.close();

                int responseCode = con.getResponseCode();

                if (responseCode == 200) {
                    in = new BufferedInputStream(con.getInputStream());
                    fout = new FileOutputStream(outputFile);

                    final byte data[] = new byte[1024];
                    int count;
                    while ((count = in.read(data, 0, 1024)) != -1) {
                        fout.write(data, 0, count);
                    }
                    res = "true";
                } else {
                    res = con.getResponseMessage();
                }

            } catch (Exception e) {
                e.printStackTrace();
                Log.e(TAG, "Exception in file Download:" + e.getMessage());
                res = "false";
            } finally {
                try {
                    if (in != null) {
                        in.close();
                    }
                    if (fout != null) {
                        fout.close();
                    }
                    res = "true";
                } catch (IOException e) {
                    e.printStackTrace();
                    res = "false";
                }
            }

            return res;
}