本文整理汇总了Java中com.oreilly.servlet.multipart.FileRenamePolicy类的典型用法代码示例。如果您正苦于以下问题:Java FileRenamePolicy类的具体用法?Java FileRenamePolicy怎么用?Java FileRenamePolicy使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FileRenamePolicy类属于com.oreilly.servlet.multipart包,在下文中一共展示了FileRenamePolicy类的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: moveUploadFileTo
import com.oreilly.servlet.multipart.FileRenamePolicy; //导入依赖的package包/类
/**
*/
@Override
/* TODO: ORID-1007 'File' this method should be supporting service */
public File moveUploadFileTo(File destinationDir) {
if (tempUploadFile != null && tempUploadFile.exists()) {
destinationDir.mkdirs();
// Check if such a file does already exist, if yes rename new file
File existsFile = new File(destinationDir, uploadFilename);
if (existsFile.exists()) {
// Use standard rename policy
FileRenamePolicy frp = new DefaultFileRenamePolicy();
File tmpF = new File(uploadFilename);
uploadFilename = frp.rename(tmpF).getName();
}
// Move file now
File targetFile = new File(destinationDir, uploadFilename);
if (FileUtils.copyFileToFile(tempUploadFile, targetFile, true)) {
return targetFile;
}
}
return null;
}
开发者ID:huihoo,项目名称:olat,代码行数:24,代码来源:FileElementImpl.java
示例2: build
import com.oreilly.servlet.multipart.FileRenamePolicy; //导入依赖的package包/类
/**
* Pseudo-constructor that allows the class to perform any initialization necessary.
*
* @param request an HttpServletRequest that has a content-type of multipart.
* @param tempDir a File representing the temporary directory that can be used to store
* file parts as they are uploaded if this is desirable
* @param maxPostSize the size in bytes beyond which the request should not be read, and a
* FileUploadLimitExceeded exception should be thrown
* @throws IOException if a problem occurs processing the request of storing temporary
* files
* @throws FileUploadLimitExceededException if the POST content is longer than the
* maxPostSize supplied.
*/
public void build(HttpServletRequest request, final File tempDir, long maxPostSize)
throws IOException, FileUploadLimitExceededException {
try {
// Create a new file in the temp directory in case of file name conflict
FileRenamePolicy renamePolicy = new FileRenamePolicy() {
public File rename(File arg0) {
try {
return File.createTempFile("cos", "", tempDir);
}
catch (IOException e) {
throw new StripesRuntimeException(
"Caught an exception while trying to rename an uploaded file", e);
}
}
};
this.charset = request.getCharacterEncoding();
this.multipart = new MultipartRequest(request,
tempDir.getAbsolutePath(),
(int) maxPostSize,
this.charset,
renamePolicy);
}
catch (IOException ioe) {
Matcher matcher = EXCEPTION_PATTERN.matcher(ioe.getMessage());
if (matcher.matches()) {
throw new FileUploadLimitExceededException(Long.parseLong(matcher.group(2)),
Long.parseLong(matcher.group(1)));
}
else {
throw ioe;
}
}
}
开发者ID:nkasvosve,项目名称:beyondj,代码行数:50,代码来源:CosMultipartWrapper.java
示例3: renameFileIfAlreadyExists
import com.oreilly.servlet.multipart.FileRenamePolicy; //导入依赖的package包/类
public String renameFileIfAlreadyExists() {
// file already exists... upload anyway with new filename and
// in the folder manager status.
// rename file and ask user what to do
FileRenamePolicy fileRenamePolicy = new DefaultFileRenamePolicy();
if (!(getExistingVFSItem() instanceof LocalImpl)) {
throw new AssertException("Can only LocalImpl VFS items, don't know what to do with file of type::" + getExistingVFSItem().getClass().getCanonicalName());
}
File existingFile = ((LocalImpl) getExistingVFSItem()).getBasefile();
File tmpOrigFilename = new File(existingFile.getAbsolutePath());
String renamedFilename = fileRenamePolicy.rename(tmpOrigFilename).getName();
return renamedFilename;
}
开发者ID:huihoo,项目名称:olat,代码行数:14,代码来源:FileUploadEBL.java
示例4: setFileRenamePolicy
import com.oreilly.servlet.multipart.FileRenamePolicy; //导入依赖的package包/类
public static void setFileRenamePolicy(FileRenamePolicy fileRenamePolicy) {
MultipartRequest.fileRenamePolicy = fileRenamePolicy;
}
开发者ID:Xlongshu,项目名称:EasyController,代码行数:4,代码来源:MultipartRequest.java
注:本文中的com.oreilly.servlet.multipart.FileRenamePolicy类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论