码迷,mamicode.com
首页 > 编程语言 > 详细

Java中将word生成缩略图

时间:2014-09-24 14:41:27      阅读:1455      评论:0      收藏:0      [点我收藏+]

标签:java   缩略图   

解决思路是:

1、先将word生成pdf,这个采用openoffice或者jacob

2、然后将pdf生成图片

具体代码如下:

private void officeToPdf(){
OpenOfficeConnection connection = new SocketOpenOfficeConnection(8100);
try {
connection.connect();
} catch (ConnectException e) {
e.printStackTrace();
}
DocumentConverter converter = new OpenOfficeDocumentConverter(
connection);
converter.convert(officeFile, pdfFile);
// close the connection
connection.disconnect();
}


// 将PDF格式的文件转换为JPG格式的文件
private  void pdfToJPG(String inputFile)
throws IOException {


// load a pdf from a byte buffer
File file = new File(inputFile);


RandomAccessFile raf = new RandomAccessFile(file, "r");
FileChannel channel = raf.getChannel();
//这句代码通道建立了map映射,如果要删除file那么得接触映射
ByteBuffer buf = channel.map(FileChannel.MapMode.READ_ONLY, 0,
channel.size());
PDFFile pdffile = new PDFFile(buf);
int totalpage =pdffile.getNumPages();
for (int i = 1; i <= totalpage; i++) {
if (i == 1) {
// draw the first page to an image
// 以图片的形式来描绘首页
PDFPage page = pdffile.getPage(i);
Rectangle rect = new Rectangle(0, 0, (int) page.getBBox()
.getWidth(), (int) page.getBBox().getHeight());

// generate the image
// 生成图片
Image img = page.getImage(rect.width, rect.height, // width &
// height
rect, // clip rect
null, // null for the ImageObserver
true, // fill background with white
true // block until drawing is done
);
BufferedImage tag = new BufferedImage(rect.width, rect.height,
BufferedImage.TYPE_INT_RGB);
tag.getGraphics().drawImage(img.getScaledInstance(rect.width, rect.height,  Image.SCALE_SMOOTH), 0, 0, rect.width, rect.height,
null);

FileOutputStream out = new FileOutputStream( imagePath+"\\"+fileName.substring(fileName.lastIndexOf("/")+1)
+ ".jpg"); // 输出到文件流
JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
encoder.encode(tag); // JPEG编码
// 关闭输出流
out.close();
break;
}
}
buf.clear();
channel.close();
raf.close();
unmap(buf);
file.delete();

}
//解除map映射
public static <T> void unmap(final Object buffer) {
   AccessController.doPrivileged(new PrivilegedAction<T>(){
       @Override
   public T run() {                
       try {
       Method getCleanerMethod = buffer.getClass().getMethod("cleaner", new Class[0]);
       getCleanerMethod.setAccessible(true);
       sun.misc.Cleaner cleaner = (sun.misc.Cleaner) getCleanerMethod.invoke(buffer, new Object[0]);
       cleaner.clean();
       } catch(Exception e) {
           e.printStackTrace();
       }               
       return null;
   }           
   });
}

需要注意的是,我生成完图片后将pdf删除,但是删除失败,经过大牛的指点加上了unmap就ok了,故写下来分享给大家。

需要的jar包是PDFRenderer.jar和jodconverter-2.2.2.jar包,如果使用jacob还得加入jacob.jar

Java中将word生成缩略图

标签:java   缩略图   

原文地址:http://blog.csdn.net/menghuannvxia/article/details/39522115

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!