SpringFrameworkでiframeを使用してWebページにPDFファイルを表示したい。ダウンロードオプションの代わりに、WebページにPDFファイルを表示する必要があります。pls誰もが私を助けることができます。
前もって感謝します..
私のJavaコード:
Employee employee = employeeManager.getObjectOrNull(
Employee .class, id);
File file = new File(dir,
employee .getFileName());
org.apache.commons.io.FileUtils.writeByteArrayToFile(file,
employee .getfile());
if (employee != null) {
ControllerUtils.openFile(dir,
response, employee.getFileName());
String contentType = Utils.getContentType(employee
.getFileName());
response.setContentType(contentType);
response.setHeader("Cache-Control", "private, max-age=5");