Java base64转pdf
时间: 2023-09-03 10:08:25 浏览: 154
base64转PDF文件
以下是使用Java将Base64编码的字符串转换为PDF文件的示例代码:
```java
import java.io.FileOutputStream;
import java.util.Base64;
public class Base64ToPdf {
public static void main(String[] args) {
String base64String = "base64-encoded-pdf-string"; // replace with your own base64-encoded string
byte[] decodedBytes = Base64.getDecoder().decode(base64String);
try {
FileOutputStream fos = new FileOutputStream("output.pdf"); // replace with your preferred output file path
fos.write(decodedBytes);
fos.close();
System.out.println("PDF file saved successfully!");
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
在上面的代码中,我们首先将Base64编码的字符串解码为字节数组,然后将其写入指定的输出文件中。请注意在此示例中使用的Java 8中的Base64实用程序类。
阅读全文