本文整理汇总了Java中org.apache.commons.fileupload.FileUploadBase.FileSizeLimitExceededException类的典型用法代码示例。如果您正苦于以下问题:Java FileSizeLimitExceededException类的具体用法?Java FileSizeLimitExceededException怎么用?Java FileSizeLimitExceededException使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
FileSizeLimitExceededException类属于org.apache.commons.fileupload.FileUploadBase包,在下文中一共展示了FileSizeLimitExceededException类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的Java代码示例。
示例1: addFileSkippedError
import org.apache.commons.fileupload.FileUploadBase.FileSizeLimitExceededException; //导入依赖的package包/类
/**
* Add a file skipped message notification for action messages.
*
* @param fileName file name
* @param request the servlet request
*/
private void addFileSkippedError(String fileName, HttpServletRequest request) {
String exceptionMessage = "Skipped file " + fileName + "; request size limit exceeded.";
FileSizeLimitExceededException exception = new FileUploadBase.FileSizeLimitExceededException(exceptionMessage, getRequestSize(request), maxSize);
String message = buildErrorMessage(exception, new Object[]{fileName, getRequestSize(request), maxSize});
if (!errors.contains(message)) {
errors.add(message);
}
}
开发者ID:txazo,项目名称:struts2,代码行数:15,代码来源:JakartaStreamMultiPartRequest.java
示例2: handleFileUploadExceptions
import org.apache.commons.fileupload.FileUploadBase.FileSizeLimitExceededException; //导入依赖的package包/类
/**
* Allows to handle the file upload exceptions and to write them into the output
* stream so that the client will be able to deserelize them and to show to the user.
* @param logger the logger object
* @param ex the exception that has happened
* @param response the servlet responce
* @param max_img_size_bytes the mazimum size dor the uploaded image
* @throws IOException if smth bad happens
*/
public static void handleFileUploadExceptions(Logger logger, FileUploadException ex, HttpServletResponse response,
final long max_img_size_bytes ) throws IOException {
String errorCode = "";
if( ex instanceof IOFileUploadException ) {
//Thrown to indicate an IOException
logger.error( "An IOException exception while user-file upload." , ex);
errorCode += ExceptionsSerializer.serialize( new InternalSiteException(InternalSiteException.IO_FILE_UPLOAD_EXCEPTION_ERR ) );
} else if( ex instanceof InvalidContentTypeException ) {
//Thrown to indicate that the request is not a multipart request.
logger.error( "An incorrect request while user-file upload." , ex);
errorCode += ExceptionsSerializer.serialize( new InternalSiteException(InternalSiteException.INCORRECT_FILE_UPLOAD_REQUEST_EXCEPTION_ERR ) );
} else if( ex instanceof FileSizeLimitExceededException ) {
//Thrown to indicate that A files size
//exceeds the configured maximum.
logger.warn( "File size exceeded while user-file upload" );
errorCode += ExceptionsSerializer.serialize( new UserFileUploadException( UserFileUploadException.FILE_IS_TOO_LARGE_ERR ) );
} else if( ex instanceof SizeLimitExceededException ){
//Thrown to indicate that the request size
//exceeds the configured maximum.
logger.warn( "Request size exceeded while user-file upload" );
UserFileUploadException nex = new UserFileUploadException( UserFileUploadException.FILE_IS_TOO_LARGE_ERR );
nex.setMaxUploadFileSize( max_img_size_bytes );
errorCode += ExceptionsSerializer.serialize( nex );
} else {
//Some unknown exceptions, there should not be any else left, but just in case ...
logger.error( "An unknown exception while user-file upload", ex);
errorCode += ExceptionsSerializer.serialize( new InternalSiteException(InternalSiteException.UNKNOWN_INTERNAL_SITE_EXCEPTION_ERR ) );
}
response.getWriter().println( errorCode );
}
开发者ID:ivan-zapreev,项目名称:x-cure-chat,代码行数:40,代码来源:FileServletHelper.java
注:本文中的org.apache.commons.fileupload.FileUploadBase.FileSizeLimitExceededException类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。 |
请发表评论