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