类似豆丁网、百度文库的开源文档播放器源码下载及实现
播放器及组件下载地址:
http://code.google.com/p/flexpaper/downloads/list
源码下载 需要使用svn 地址:
http://flexpaper.googlecode.com/svn/trunk/
用 JodConverter(Openoffice)可以在命令行下把
转换成pdf
而swftools 可以把 pdf转成swf
然后用flexpager播放器就可以了
?
通过调用JODConverter将格式为WORD的DOC文件转换成PDF格式文件很容易,核心代码只有几句:
File inputFile = new File("C:\\Documents and Settings\\ccnustone\\桌面\\新建文件夹\\数据挖掘技术简介.doc");
File outputFile = new File("C:\\Documents and Settings\\ccnustone\\桌面\\新建文件夹\\数据挖掘技术简介.pdf");
// connect to an OpenOffice.org instance running on port 8100
OpenOfficeConnection connection = new SocketOpenOfficeConnection(8100);
connection.connect();
// convert
DocumentConverter converter = new OpenOfficeDocumentConverter(connection);
converter.convert(inputFile, outputFile);
// close the connection
connection.disconnect();
先到http://sourceforge.net/project/showfiles.php?group_id=91849下载jodconverter-2.2.1.zip,接压缩后,找到LIB文件夹,将里面的包配置到Build Path中,启动OPEN OFFICE的服务就OK了。至于要实现其他格式转换,可以参看里面的API。
这里主要是借助 OpenOffice3.2,不需要安装版,USB版也可以