OA附件大小和内容优化

This commit is contained in:
yuxueliang0813 2025-03-20 10:19:48 +08:00
parent ffa9da64e2
commit b8f53f6adc
1 changed files with 6 additions and 6 deletions

View File

@ -135,7 +135,7 @@ public class AttachmentFileUtil {
TempFileCache cache = CacheFactory.getCommonCacheFactory().getTempFileCache();
InputStream inputs;
FileService service = FileServiceFactory.getAttachmentFileService();
int filesize = 0;
byte[] filecontent;
//遍历目标目录得到所有文件
for (int i = 0; i < filenames.size(); i++) {
destFile = filenames.getJSONObject(i);
@ -153,14 +153,14 @@ public class AttachmentFileUtil {
// inputs = service.getInputStream("E:\\dobews\\dobe_cosmic6\\replay_pid13348.log");
// logger.info("文件大小"+inputs.available());//Linux服务器上此方法不能返回文件大小都是0
//文件大小
filesize = ByteStreams.toByteArray(inputs).length;
attachItem.put("size", filesize);
logger.info("文件大小"+filesize);
if(filesize == 0){
filecontent = ByteStreams.toByteArray(inputs);
attachItem.put("size", filecontent.length);
logger.info("文件大小"+filecontent.length);
if(filecontent.length == 0){
attachItem.put("size", 60000);
}
//将文件流存入临时文件缓存拷贝完成最后一个参数为缓存有效期600秒
tempUrl = cache.saveAsUrl(fileName, inputs, 600);//此方法执行后inputs会被自动关闭后续不能再对inputs操作
tempUrl = cache.saveAsUrl(fileName, filecontent, 600);//此方法执行后inputs会被自动关闭后续不能再对inputs操作
//修改时间
attachItem.put("lastModified",System.currentTimeMillis());