填写必要的包裹信息后,我设法通过 goShippo API 调用创建了一个响应的 Transaction 对象:Transaction.create(Map, apiKey)。从响应的 Transaction 对象中,我可以获取作为 Url 的运输标签:transaction.getObjectId()。
我遇到的问题是如何让我的客户下载运输标签。
我目前的代码是:
fileName= "https://shippo-delivery-east.s3.amazonaws.com/b1b0e6af.pdf?xxxxxx";
File file = new File(fileName);
String mineType = URLConnection.guessContentTypeFromName(file.getName());
if(mineType == null) {
System.out.println("mineType is not detectable");
mineType = "application/octet-stream";
}
response.setContentType(mineType);
response.setHeader("Content-Disposition"
, String.format("inline; filename=\"" + file.getName() +"\""));
response.setContentLength((int)file.length());
InputStream inputStream = new BufferedInputStream(new FileInputStream(file));
FileCopyUtils.copy(inputStream, response.getOutputStream());
我遇到的错误是找不到文件,但是当我在浏览器上传递文件名时,我可以看到运输标签。