zoukankan      html  css  js  c++  java
  • 32:JAVA-------读取文件夹,并文件解析,pdf转图片

    import java.awt.image.BufferedImage;
    import java.awt.image.RenderedImage;
    import java.io.File;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    
    import org.icepdf.core.pobjects.Document;
    import org.icepdf.core.util.GraphicsRenderingHints;
    /*
     * pdf 转 图片
     */
    public class PdfToHtml {
        public static void pdf2Pic(String wor_id,String pdfPath, String path){
            Document document = new Document();
            document.setFile(pdfPath);
            float scale = 2.5f;//缩放比例
            float rotation = 0f;//旋转角度
                    
            for (int i = 0; i < document.getNumberOfPages(); i++) {
                BufferedImage image = (BufferedImage)
                document.getPageImage(i, GraphicsRenderingHints.SCREEN, org.icepdf.core.pobjects.Page.BOUNDARY_CROPBOX, rotation, scale);
                RenderedImage rendImage = image;
                try {
                    String imgName = wor_id+i + ".png";
                    System.out.println(imgName);
                    File file = new File(path + imgName);
                    ImageIO.write(rendImage, "png", file); 
                } catch (IOException e) {
                    e.printStackTrace();
                }
                image.flush();
            }
            document.dispose();
        }
        
         public static  String GetSql(String path){
              File rootDir = new File(path);
               if(!rootDir.isDirectory()){
                   
                   String paths=rootDir.getAbsolutePath().replace("\", "/");
                   
                   String[] pathth=paths.split("/");
                   
                   //String filePath = "E:/项目/打牌啦/合同/test/pdf/pdf/basefile.pdf";
                   //pdf2Pic(filePath, "E:/项目/打牌啦/合同/test/pdf/pdf/");
                       //文件名E:/项目/contract/newFile/allpdf/100018815561398.pdf
                   
                   System.out.println("文件名"+pathth[5]);
                   
                   String paththth=pathth[5].replace(".pdf", "").trim();
                   
                   String newPath="E:/项目/contract/newFile/allpdfImage/";
                   
                   PdfToHtml.pdf2Pic(paththth,paths,newPath);
                   
               }else{
                String[] fileList =  rootDir.list();
                for (int i = 0; i < fileList.length; i++) {
                 path = rootDir.getAbsolutePath()+"\"+fileList[i];
                 
                 
                 try {
                        Thread.currentThread().sleep(3000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                 
                 GetSql(path);      
                  } 
               }    
              return null;    
             }
                
                //WordTOPDFUtil.wordPdf("3518812344444");
                 public static void main(String[] args) {
                       // TODO Auto-generated method stub
                      // String path ="E:/项目/contract/newFile/pdf1/";
                         String path="E:/项目/contract/newFile/allpdf/";
                     
                       GetSql(path);
                     }
            
    }
  • 相关阅读:
    Ubuntu 服务器默认的root账号是没有激活的,需要用初装的用户账号给root设置管理密码
    MySQL忘记root密码重置密码(5.7版本)
    SpringMvc与前台ajax数据传递
    将http://localhost:8080设置为项目主页
    javaweb项目主页设置
    Redis在java开发中使用
    eclipse基于git上传项目到码云上
    spring配置tomcat jdbc pool数据库连接池
    run as maven build时报错
    Tomcat-Jdbc-Pool连接池参数说明
  • 原文地址:https://www.cnblogs.com/coriander/p/7520411.html
Copyright © 2011-2022 走看看