dedeCMS如何实现上传的doc PPT文档在线阅览,就像百度文库一样。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了dedeCMS如何实现上传的doc PPT文档在线阅览,就像百度文库一样。相关的知识,希望对你有一定的参考价值。
参考技术A 需要在web configure服务器配置文件里配置好像Android:如何创建 .doc、.ppt、.xls、.pdf 格式的文档编辑器? [关闭]
【中文标题】Android:如何创建 .doc、.ppt、.xls、.pdf 格式的文档编辑器? [关闭]【英文标题】:Android:How to create Document Editor with .doc , .ppt, .xls, .pdf format? [closed] 【发布时间】:2012-03-10 13:24:58 【问题描述】:我想创建一个编辑器,在其中我可以在阅读文档时对其进行编辑。 谁能建议如何开始这个项目?
【问题讨论】:
【参考方案1】:嗨,您如何编辑 PDF 文件。
您可以使用以下代码在手机上查看pdf和HTML页面。
您必须在布局文件夹中创建网页,并在活动中编写以下代码:
private WebView myWebView;
myWebView = (WebView) this.findViewById(R.id.webView);
private static final FrameLayout.LayoutParams ZOOM_PARAMS = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT,ViewGroup.LayoutParams.WRAP_CONTENT,Gravity.BOTTOM);
FrameLayout mContentView = (FrameLayout) getWindow().
getDecorView().findViewById(android.R.id.content);
final View zoom = this.myWebView.getZoomControls();
mContentView.addView(zoom, ZOOM_PARAMS);
zoom.setVisibility(View.GONE);
String url = "http://marico.com/html/index.html";
String googleDocsUrl = "http://docs.google.com/viewer?url="+url;
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse(googleDocsUrl ), "text/html");
startActivity(intent);
this.myWebView.loadUrl("http://marico.com/html/index.html");
【讨论】:
以上是关于dedeCMS如何实现上传的doc PPT文档在线阅览,就像百度文库一样。的主要内容,如果未能解决你的问题,请参考以下文章
SpringBoot+Vue+kkFileView实现文档管理(文档上传下载在线预览)
前端实现文件在线预览txt,pdf,doc,xls,ppt几种格式