我编写了一个方法,将给定的PDF文件编码为字节数组:
public static byte[] encodeFileToBase64(String pathToPdfFile)
throws IOException {
File file = new File(pathToPdfFile);
InputStream input = null;
try {
input = new FileInputStream(file);
} catch (FileNotFoundException e) {
throw (e);
}
byte[] buffer = new byte[(int) file.length()];
ByteArrayOutputStream baos = new ByteArrayOutputStream();
int bytesRead;
try {
while ((bytesRead = input.read(buffer)) != -1) {
baos.write(buffer, 0, bytesRead);
}
} catch (IOException e) {
throw (e);
}
input.close();
return baos.toByteArray();
}
现在我正在实现SOAP Web服务的接口。
用户手册要求使用Base64编码的PDF文件。
我使用Apache Axis2(wsdl
)从给定的wsdl2java
文件生成了Java代码。在此代码中,需要将给定的PDF文件设置为javax.activation.DataHandler
:
/**
* Auto generated setter method
* @param param PdfDocument
*/
public void setPdfDocument(javax.activation.DataHandler param) {
this.localPdfDocument = param;
}
现在,我的问题是,如何将Base64编码的内容转换为DataHandler
。
你能帮助我吗?
谢谢!
答案 0 :(得分:2)
试试这个:
DataSource fds = new FileDataSource("filePath");
request.setMessageFile(new DataHandler(fds));
javax.activation。*包本身处理base64编码。