/**
* 文档预览
*
* @param request
* @param response
* @throws IOException
*/
public void view(HttpServletRequest request, HttpServletResponse response) throws IOException {
try {
// 你的文档地址
String file = "http://view.xdocin.com/doc/preview.docx";
// XDOC文档预览服务地址
String xurl = "http://view.xdocin.com/xdoc";
// 预览参数
Map<String, Object> params = new HashMap<String, Object>();
// 获取预览结果url
params.put("_func", "url");
// 结果格式XML
params.put("_rformat", "xml");
// 文档地址
params.put("_xdoc", file);
// word文档是否以pdf方式显示,默认false
// params.put("_pdf", true);
// 水印文本,显示水印
// params.put("_watermark", "XDOC文档预览");
// 是否允许保存PDF,默认true
// params.put("_saveable", false);
// 是否允许打印PDF,默认true
// params.put("_printable", false);
// 是否允许选择复制内容,默认true
// params.put("_copyable", false);
// 是否显示底部工具条,默认true
// params.put("_toolbar", false);
// 自定义标题
// params.put("_title", "文档预览");
// 预览链接有效期,单位分钟,默认永久有效
// params.put("_expire", 30);
// 组合调用URL
StringBuffer sb = new StringBuffer();
sb.append(xurl);
Iterator<String> it = params.keySet().iterator();
String key;
boolean first = true;
while (it.hasNext()) {
key = it.next();
sb.append(first ? '?' : '&');
sb.append(java.net.URLEncoder.encode(key, "UTF-8"));
sb.append('=');
sb.append(java.net.URLEncoder.encode(params.get(key).toString(), "UTF-8"));
first = false;
}
// 获取预览结果URL,跳转
URL url = new URL(sb.toString());
DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
factory.setValidating(false);
DocumentBuilder builder = factory.newDocumentBuilder();
Document document = builder.parse(url.openStream());
document.getDocumentElement().normalize();
Element root = document.getDocumentElement();
if (root.getAttribute("success").equals("true")) {
// 预览结果URL
String viewUrl = root.getElementsByTagName("result").item(0).getTextContent();
// 跳转
response.sendRedirect(viewUrl);
} else {
throw new RuntimeException(root.getElementsByTagName("error").item(0).getTextContent());
}
} catch (Exception e) {
e.printStackTrace();
}
}
Java在线预览文档最佳实践
点赞
收藏