|
仿照网上所说的流程,利用openoffice,JODConverter,swftools软件来做类似百度文库的功能,出现如下错误:- private void doc2pdf() throws Exception
- {
- if(docFile.exists())
- {
- if(!pdfFile.exists())
- {
- OpenOfficeConnection connection=new SocketOpenOfficeConnection(8100);
- try
- {
- connection.connect();
- DocumentConverter converter=new OpenOfficeDocumentConverter(connection);
- converter.convert(docFile,pdfFile);
- //close the connection
- connection.disconnect();
- System.out.println("****pdf转换成功,PDF输出:"+pdfFile.getPath()+"****");
- }
- catch(java.net.ConnectException e)
- {
- //ToDo Auto-generated catch block
- e.printStackTrace();
- System.out.println("****swf转换异常,openoffice服务未启动!****");
- throw e;
- }
- catch(com.artofsolving.jodconverter.openoffice.connection.OpenOfficeException e)
- {
- e.printStackTrace();
- System.out.println("****swf转换器异常,读取转换文件失败****");
- throw e;
- }
- catch(Exception e)
- {
- e.printStackTrace();
- throw e;
- }
- }
- else
- {
- System.out.println("****已经转换为pdf,不需要再进行转化****");
- }
- }
- else
- {
- System.out.println("****swf转换器异常,需要转换的文档不存在,无法转换****");
- }
- }
-
复制代码 就是上面的OpenOfficeConnection类无法导入,有错误,SocketOpenOfficeConnection(8100),DocumentConverter,均有这个问题,网络上说是没有打开OpenOffi服务,但是在任务管理器当中:
[url=]图片[/url]
[url=]显示已经启动该任务[/url]
[url=]另外由于我不太了解web开发,第一次建web工程,目录如下:[/url]
[url=]求大神解决!!!![/url]
|
本帖子中包含更多资源
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
|