资源简介
基于EasyUI设计的快速开发框架,页面面美化风格黑色。用法和原生的一样,没有对JS进行修改,只是修改了样式,是页面更加美观
代码片段和文件信息
package com.baidu.ueditor.um;
import java.io.*;
import java.text.SimpleDateFormat;
import java.util.*;
import org.apache.commons.fileupload.*;
import org.apache.commons.fileupload.FileUploadbase.InvalidContentTypeException;
import org.apache.commons.fileupload.FileUploadbase.SizeLimitExceededException;
import org.apache.commons.fileupload.util.*;
import org.apache.commons.fileupload.servlet.*;
import org.apache.commons.fileupload.FileItemIterator;
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import sun.misc.base64Decoder;
import javax.servlet.http.HttpServletRequest;
/**
* UEditor文件上传辅助类
*
*/
public class Uploader {
// 输出文件地址
private String url = ““;
// 上传文件名
private String fileName = ““;
// 状态
private String state = ““;
// 文件类型
private String type = ““;
// 原始文件名
private String originalName = ““;
// 文件大小
private long size = 0;
private HttpServletRequest request = null;
private String title = ““;
// 保存路径
private String savePath = “upload“;
// 文件允许格式
private String[] allowFiles = { “.rar“ “.doc“ “.docx“ “.zip“ “.pdf““.txt“ “.swf“ “.wmv“ “.gif“ “.png“ “.jpg“ “.jpeg“ “.bmp“ };
// 文件大小限制,单位KB
private int maxSize = 10000;
private HashMap errorInfo = new HashMap();
public Uploader(HttpServletRequest request) {
this.request = request;
HashMap tmp = this.errorInfo;
tmp.put(“SUCCESS“ “SUCCESS“); //默认成功
tmp.put(“NOFILE“ “未包含文件上传域“);
tmp.put(“TYPE“ “不允许的文件格式“);
tmp.put(“SIZE“ “文件大小超出限制“);
tmp.put(“ENTYPE“ “请求类型ENTYPE错误“);
tmp.put(“REQUEST“ “上传请求异常“);
tmp.put(“IO“ “IO异常“);
tmp.put(“DIR“ “目录创建失败“);
tmp.put(“UNKNOWN“ “未知错误“);
}
public void upload() throws Exception {
boolean isMultipart = ServletFileUpload.isMultipartContent(this.request);
if (!isMultipart) {
this.state = this.errorInfo.get(“NOFILE“);
return;
}
DiskFileItemFactory dff = new DiskFileItemFactory();
String savePath = this.getFolder(this.savePath);
dff.setRepository(new File(savePath));
try {
ServletFileUpload sfu = new ServletFileUpload(dff);
sfu.setSizeMax(this.maxSize * 1024);
sfu.setHeaderEncoding(“utf-8“);
FileItemIterator fii = sfu.getItemIterator(this.request);
while (fii.hasNext()) {
FileItemStream fis = fii.next();
if (!fis.isFormField()) {
this.originalName = fis.getName().substring(fis.getName().lastIndexOf(System.getProperty(“file.separator“)) + 1);
if (!this.checkFileType(this.originalName)) {
this.state = this.errorInfo.get(“TYPE“);
continue;
}
this.fileName = this.getName(this.originalName);
this.type = this.getFileExt(this.fileName);
this.url = savePath + “/“ + this.fileName;
BufferedInputStream in = new BufferedInputStream(fis.openStream());
File file = new File(this.getPhysicalPath(this.url));
FileOutputStream out = new FileOutputStream( file );
BufferedOutputStream output = new BufferedOutputStream(out);
Streams.copy(in outpu
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2020-11-24 13:15 黑色模版\
目录 0 2020-11-24 13:15 黑色模版\custom\
目录 0 2020-11-24 13:15 黑色模版\custom\demo\
目录 0 2020-11-24 13:15 黑色模版\custom\demo\accordion\
文件 685 2016-05-08 10:51 黑色模版\custom\demo\accordion\_content.html
文件 1838 2016-05-28 23:11 黑色模版\custom\demo\accordion\actions.html
文件 1595 2016-05-28 23:11 黑色模版\custom\demo\accordion\ajax.html
文件 1978 2016-05-08 10:51 黑色模版\custom\demo\accordion\basic.html
文件 1416 2016-05-08 10:51 黑色模版\custom\demo\accordion\datagrid_data1.json
文件 1370 2016-05-28 23:11 黑色模版\custom\demo\accordion\expandable.html
文件 1304 2016-05-28 23:11 黑色模版\custom\demo\accordion\fluid.html
文件 2086 2016-05-28 23:11 黑色模版\custom\demo\accordion\multiple.html
文件 2319 2016-05-28 23:11 黑色模版\custom\demo\accordion\tools.html
文件 2621 2016-05-02 23:22 黑色模版\custom\demo\button.html
目录 0 2020-11-24 13:15 黑色模版\custom\demo\calendar\
文件 6148 2016-05-26 23:43 黑色模版\custom\demo\calendar\.DS_Store
文件 645 2016-05-02 23:22 黑色模版\custom\demo\calendar\basic.html
文件 1391 2016-05-02 23:22 黑色模版\custom\demo\calendar\custom.html
文件 870 2016-05-02 23:22 黑色模版\custom\demo\calendar\disabledate.html
文件 1018 2016-05-02 23:22 黑色模版\custom\demo\calendar\firstday.html
文件 919 2016-05-02 23:22 黑色模版\custom\demo\calendar\fluid.html
文件 642 2016-05-02 23:22 黑色模版\custom\demo\calendar.html
目录 0 2020-11-24 13:15 黑色模版\custom\demo\datagrid\
文件 8196 2016-05-29 20:05 黑色模版\custom\demo\datagrid\.DS_Store
文件 1426 2016-05-02 23:22 黑色模版\custom\demo\datagrid\aligncolumns.html
文件 1266 2016-05-02 23:22 黑色模版\custom\demo\datagrid\basic.html
文件 5012 2016-05-02 23:22 黑色模版\custom\demo\datagrid\cacheeditor.html
文件 3646 2016-05-02 23:22 黑色模版\custom\demo\datagrid\cellediting.html
文件 1491 2016-05-02 23:22 黑色模版\custom\demo\datagrid\cellst
文件 1863 2016-05-02 23:22 黑色模版\custom\demo\datagrid\checkbox.html
文件 5245 2016-05-02 23:22 黑色模版\custom\demo\datagrid\clientpagination.html
............此处省略641个文件信息
- 上一篇:卡尔曼滤波电子书资料
- 下一篇:高等数学同济六版课件全集上
相关资源
- 软件方法:上册,业务建模与需求(
- Machine Learning Tom M. Mitchell中文版.pdf
- Teamcenter MRO 基础及服务数据管理介绍
- Refactoring_Improving_the_Design_of_Existing_C
- AI医学影像的研究及进展——王立威
- The Elements of Statistical Learning 2nd 带书签
- 华东师范大学数学科学学院专业硕士
- IntelliJ IDEA2018.2中文汉化包
- [Jean_Meeus]_Astronomical_algorithms(2nd).
- InsdepUI-2.1.6
- 多智能体机器学习:强化学习方法中
- ReadCube-文献阅读管理软件
- 一个仿steam,有登陆注册功能,还有验
- 《深度学习Deep Learning 》中文版 高清
- CutLeader(数控切割套料软件)v5.6.4绿
- CoolTweak(添加水印软件)v2.0免费绿色
- EaseUS Data Recovery Wizard 11.9.0绿色破解版
- unity 插件Easy Touch 5 5.0.17
- Generalized Principal Component Analysis
- Learn You Some Erlang for Great Good!
- Beginning NetBeans IDE(Apress2015)
- mybatis+spring+springmvc+easyui做的一个登陆
- Robot Dynamics AlgorithmsRoy Featherstone
- 在idea下使用maven构建spring+springMVC+hi
- Sound Reproduction - Loudspeakers And Rooms (
- Introduction to algorithms A creative approach
- Bayesian Reasoning and Machine Learning
- Introduction to Linear Algebra5ed by Gilbert S
- Deep Learning-Ian Goodfellow (2017)带书签
- Applied Nonlinear Control (MIT教材)
评论
共有 条评论