首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > PowerDesigner >

openoffice回实现将word转换成pdf

2014-01-08 
openoffice来实现将word转换成pdfhttp://www.javaeye.com/topic/352103??*?完成word2pdf的转换?????*/????

openoffice来实现将word转换成pdf

http://www.javaeye.com/topic/352103

?

?*?完成word2pdf的转换
?????*/
????public?void?GeneratePdfFromWord()?{
????????Date?date?=?new?Date();
????????
????????OpenOfficeConnection?connection?=?new?SocketOpenOfficeConnection(8100);
????????
????????try?{
????????????connection.connect();????
?????????????DocumentConverter?converter?=?new?OpenOfficeDocumentConverter(connection);
????????????????converter.convert(new?File("d:\\test.doc"),?new?File("d:\\word2pdf.pdf"));
????????????????
????????}?catch?(Exception?e)?{
????????????//?TODO:?handle?exception
????????}?finally?{
????????????if(connection!=null){
????????????????connection.disconnect();
????????????????connection?=?null;
????????????}

????????}
????}

热点排行