解决删除文件错误问题

master
zhanghai 2 years ago
parent 000dc128b9
commit 22be3edabd

@ -6,6 +6,7 @@ import com.docus.sw.word.GetPicsDocx;
import com.docus.sw.word.MyFileUtil; import com.docus.sw.word.MyFileUtil;
import com.docus.sw.word.PdfBoxUtils; import com.docus.sw.word.PdfBoxUtils;
import com.docus.sw.word.ReadImgDoc; import com.docus.sw.word.ReadImgDoc;
import lombok.SneakyThrows;
import lombok.extern.slf4j.Slf4j; import lombok.extern.slf4j.Slf4j;
import org.apache.commons.imaging.ImageInfo; import org.apache.commons.imaging.ImageInfo;
import org.apache.commons.imaging.ImageReadException; import org.apache.commons.imaging.ImageReadException;
@ -19,6 +20,7 @@ import java.nio.file.Files;
import java.nio.file.Path; import java.nio.file.Path;
import java.nio.file.StandardCopyOption; import java.nio.file.StandardCopyOption;
import java.util.*; import java.util.*;
import java.util.concurrent.*;
@Slf4j @Slf4j
public class FenpanService { public class FenpanService {
@ -78,6 +80,10 @@ public class FenpanService {
} catch (IOException e) { } catch (IOException e) {
log.error("读取配置文件失败!", e); log.error("读取配置文件失败!", e);
throw new RuntimeException(e); throw new RuntimeException(e);
} catch (ExecutionException e) {
throw new RuntimeException(e);
} catch (InterruptedException e) {
throw new RuntimeException(e);
} }
} }
@ -95,7 +101,7 @@ public class FenpanService {
} }
public Map<String, Zong> readFile(String readUrl) { public Map<String, Zong> readFile(String readUrl) throws ExecutionException, InterruptedException {
//读取文件夹。 //读取文件夹。
List<Pieces> pieces = new ArrayList<>(); List<Pieces> pieces = new ArrayList<>();
Map<String, Roll> rollMap = new LinkedHashMap<>(); Map<String, Roll> rollMap = new LinkedHashMap<>();
@ -156,9 +162,8 @@ public class FenpanService {
try { try {
PdfBoxUtils.pdf2image(piece.getAbsolutePath(), file.getAbsolutePath()); PdfBoxUtils.pdf2image(piece.getAbsolutePath(), file.getAbsolutePath());
File[] files = file.listFiles(); File[] files = file.listFiles();
// System.out.println("件名:"+file.getName());
for (File pdfImg : files) { for (File pdfImg : files) {
// System.out.println("图片名"+pdfImg.getName());
getDocumentList(documentList, pdfImg); getDocumentList(documentList, pdfImg);
} }
} catch (IOException e) { } catch (IOException e) {
@ -173,12 +178,17 @@ public class FenpanService {
List<Document> documentList = new ArrayList<>(); List<Document> documentList = new ArrayList<>();
File sourceFile = new File(piece.getAbsolutePath()); File sourceFile = new File(piece.getAbsolutePath());
File[] files = sourceFile.listFiles(); File[] files = sourceFile.listFiles();
for (File file : files) { for (File pdfImg : files) {
getDocumentList(documentList, file); getDocumentList(documentList, pdfImg);
} }
piece.put(documentList); piece.put(documentList);
} }
}
for (Pieces piece : pieces) {
//根据文件类型
//填充卷 //填充卷
File file = new File(piece.getAbsolutePath()); File file = new File(piece.getAbsolutePath());
File parentFile = file.getParentFile(); File parentFile = file.getParentFile();
@ -237,9 +247,7 @@ public class FenpanService {
private static void getDocumentList(List<Document> documentList, File file) { private static void getDocumentList(List<Document> documentList, File file) {
//非图片模式,跳过。 //非图片模式,跳过。
if (!(file.getName().endsWith(".jpg") || file.getName().endsWith(".png") if (!(file.getName().endsWith(".jpg") || file.getName().endsWith(".png") || file.getName().endsWith(".jpeg") || file.getName().endsWith(".tif") || file.getName().endsWith(".tiff")) || file.getName().endsWith(".jp2") || file.getName().endsWith(".jpm") || file.getName().endsWith(".gif")) {
|| file.getName().endsWith(".jpeg") || file.getName().endsWith(".tif")
|| file.getName().endsWith(".tiff")) || file.getName().endsWith(".jp2") || file.getName().endsWith(".jpm")|| file.getName().endsWith(".gif")) {
return; return;
} }
@ -277,6 +285,47 @@ public class FenpanService {
} }
private static Document getDocumentList(File file) {
//非图片模式,跳过。
if (!(file.getName().endsWith(".jpg") || file.getName().endsWith(".png") || file.getName().endsWith(".jpeg") || file.getName().endsWith(".tif") || file.getName().endsWith(".tiff")) || file.getName().endsWith(".jp2") || file.getName().endsWith(".jpm") || file.getName().endsWith(".gif")) {
return null;
}
if (file.getName().endsWith(".jp2") || file.getName().endsWith(".jpm")) {
// 读取 JPEG 2000 图像文件
try {
BufferedImage image = ImageIO.read(file);
int height = image.getHeight();
int width = image.getWidth();
Document document = new Document(width, height, 300);
return document;
} catch (IOException e) {
throw new RuntimeException(e);
}
} else {
try {
ImageInfo imageInfo = Imaging.getImageInfo(file);
int height = imageInfo.getHeight();
int width = imageInfo.getWidth();
int physicalHeightDpi = imageInfo.getPhysicalHeightDpi();
Document document = new Document(width, height, physicalHeightDpi);
return document;
} catch (IOException e) {
FileUtils.delete(file);
throw new RuntimeException("非图片格式", e);
} catch (ImageReadException e) {
FileUtils.delete(file);
throw new RuntimeException(e);
} catch (IllegalArgumentException e) {
FileUtils.delete(file);
}
}
return null;
}
private void findAllDir(String absolutePath, List<Pieces> allDirectory) { private void findAllDir(String absolutePath, List<Pieces> allDirectory) {
File sourceFile = new File(absolutePath); File sourceFile = new File(absolutePath);
File[] files = sourceFile.listFiles(); File[] files = sourceFile.listFiles();
@ -296,9 +345,7 @@ public class FenpanService {
} else if (o.getName().endsWith(".doc")) { } else if (o.getName().endsWith(".doc")) {
Pieces pieces = new Pieces(FileTypeEnum.DOC, o.getAbsolutePath(), o.getName()); Pieces pieces = new Pieces(FileTypeEnum.DOC, o.getAbsolutePath(), o.getName());
allDirectory.add(pieces); allDirectory.add(pieces);
} else if (o.getName().endsWith(".jpg") || o.getName().endsWith(".png") } else if (o.getName().endsWith(".jpg") || o.getName().endsWith(".png") || o.getName().endsWith(".jpeg") || o.getName().endsWith(".tif") || o.getName().endsWith(".tiff")) {
|| o.getName().endsWith(".jpeg") || o.getName().endsWith(".tif")
|| o.getName().endsWith(".tiff")) {
Pieces pieces = new Pieces(FileTypeEnum.JPG, o.getParentFile().getAbsolutePath(), o.getParentFile().getName()); Pieces pieces = new Pieces(FileTypeEnum.JPG, o.getParentFile().getAbsolutePath(), o.getParentFile().getName());
allDirectory.add(pieces); allDirectory.add(pieces);
break; break;

@ -23,10 +23,7 @@ import java.io.IOException;
import java.nio.file.CopyOption; import java.nio.file.CopyOption;
import java.nio.file.Files; import java.nio.file.Files;
import java.nio.file.StandardCopyOption; import java.nio.file.StandardCopyOption;
import java.util.ArrayList; import java.util.*;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class SuoyinService { public class SuoyinService {
@ -78,7 +75,8 @@ public class SuoyinService {
if(piece.getName().endsWith(".doc")){ if(piece.getName().endsWith(".doc")){
Pieces pieces = new Pieces(FileTypeEnum.DOC, piece.getAbsolutePath(), piece.getName()); Pieces pieces = new Pieces(FileTypeEnum.DOC, piece.getAbsolutePath(), piece.getName());
File temp = new File("temp"); String teamName = "tempIndex/"+ UUID.randomUUID();
File temp = new File(teamName);
if(!temp.exists()){ if(!temp.exists()){
temp.mkdirs(); temp.mkdirs();
} }
@ -93,7 +91,8 @@ public class SuoyinService {
}else if(piece.getName().endsWith(".docx")){ }else if(piece.getName().endsWith(".docx")){
Pieces pieces = new Pieces(FileTypeEnum.DOCX, piece.getAbsolutePath(), piece.getName()); Pieces pieces = new Pieces(FileTypeEnum.DOCX, piece.getAbsolutePath(), piece.getName());
File temp = new File("temp"); String teamName = "tempIndex/"+ UUID.randomUUID();
File temp = new File(teamName);
if(!temp.exists()){ if(!temp.exists()){
temp.mkdirs(); temp.mkdirs();
} }
@ -107,7 +106,8 @@ public class SuoyinService {
}else if(piece.getName().endsWith(".pdf")){ }else if(piece.getName().endsWith(".pdf")){
Pieces pieces = new Pieces(FileTypeEnum.DOC, piece.getAbsolutePath(), piece.getName()); Pieces pieces = new Pieces(FileTypeEnum.DOC, piece.getAbsolutePath(), piece.getName());
File temp = new File("temp"); String teamName = "tempIndex/"+ UUID.randomUUID();
File temp = new File(teamName);
if(!temp.exists()){ if(!temp.exists()){
temp.mkdirs(); temp.mkdirs();
} }
@ -146,7 +146,7 @@ public class SuoyinService {
} }
FileUtils.delete(new File("tempIndex"));
//生成索引目录 //生成索引目录
for(IndexPlate indexPlate : map.values()){ for(IndexPlate indexPlate : map.values()){

@ -143,13 +143,21 @@ public class PdfBoxUtils {
*/ */
public static void pdf2image(String src, String des) throws IOException { public static void pdf2image(String src, String des) throws IOException {
File pdfFile = new File(src); File pdfFile = new File(src);
PDDocument load = PDDocument.load(pdfFile, MemoryUsageSetting.setupMixed(1024 * 1024)); PDDocument load = null;
try{
load = PDDocument.load(pdfFile, MemoryUsageSetting.setupMixed(512 * 1024));
DefPdfToImageEngine imageEngine = new DefPdfToImageEngine(pdfFile.getName().substring(0, pdfFile.getName().lastIndexOf(".")), des); DefPdfToImageEngine imageEngine = new DefPdfToImageEngine(pdfFile.getName().substring(0, pdfFile.getName().lastIndexOf(".")), des);
for (PDPage page : load.getPages()) { for (PDPage page : load.getPages()) {
imageEngine.processPage(page); imageEngine.processPage(page);
} }
}finally {
if(load!=null){
load.close(); load.close();
} }
}
}
/** /**

Loading…
Cancel
Save