• 大小: 4.29MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-10-13
  • 语言: 其他
  • 标签: 135  编辑器  

资源简介

内含135editor源代码,编辑器源码,此资源为研究学习使用

资源截图

代码片段和文件信息

package com.baidu.ueditor;

import java.util.Map;

import javax.servlet.http.HttpServletRequest;

import com.baidu.ueditor.define.ActionMap;
import com.baidu.ueditor.define.AppInfo;
import com.baidu.ueditor.define.baseState;
import com.baidu.ueditor.define.State;
import com.baidu.ueditor.hunter.FileManager;
import com.baidu.ueditor.hunter.ImageHunter;
import com.baidu.ueditor.upload.Uploader;

public class ActionEnter {

private HttpServletRequest request = null;

private String rootPath = null;
private String contextPath = null;

private String actionType = null;

private ConfigManager configManager = null;

public ActionEnter ( HttpServletRequest request String rootPath ) {

this.request = request;
this.rootPath = rootPath;
this.actionType = request.getParameter( “action“ );
this.contextPath = request.getContextPath();
this.configManager = ConfigManager.getInstance( this.rootPath this.contextPath request.getRequestURI() );

}

public String exec () {

if ( actionType == null || !ActionMap.mapping.containsKey( actionType ) ) {
return new baseState( false AppInfo.INVALID_ACTION ).toJSONString();
}

if ( this.configManager == null || !this.configManager.valid() ) {
return new baseState( false AppInfo.CONFIG_ERROR ).toJSONString();
}

State state = null;

int actionCode = ActionMap.getType( this.actionType );

Mapject> conf = null;

switch ( actionCode ) {

case ActionMap.CONFIG:
return this.configManager.getAllConfig().toString();

case ActionMap.UPLOAD_IMAGE:
case ActionMap.UPLOAD_SCRAWL:
case ActionMap.UPLOAD_VIDEO:
case ActionMap.UPLOAD_FILE:
conf = this.configManager.getConfig( actionCode );
state = new Uploader( request conf ).doExec();
break;

case ActionMap.CATCH_IMAGE:
conf = configManager.getConfig( actionCode );
String[] list = this.request.getParameterValues( (String)conf.get( “fieldName“ ) );
state = new ImageHunter( conf ).capture( list );
break;

case ActionMap.LIST_IMAGE:
case ActionMap.LIST_FILE:
conf = configManager.getConfig( actionCode );
int start = this.getStartIndex();
state = new FileManager( conf ).listFile( start );
break;

}

return state.toJSONString();

}

public int getStartIndex () {

String start = this.request.getParameter( “start“ );

try {
return Integer.parseInt( start );
} catch ( Exception e ) {
return 0;
}

}

}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-05-30 15:53  135编辑器\
     目录           0  2015-06-03 11:47  135编辑器\css\
     文件       10940  2015-06-03 11:03  135编辑器\css\65223d75eb.css
     文件      139171  2015-06-03 11:02  135编辑器\css\bootstrap_3.css
     文件       23739  2015-06-03 11:03  135编辑器\css\font-awesome.min.css
     文件        3339  2015-06-03 11:47  135编辑器\css\jquery.Jcrop.css
     文件       35867  2015-06-03 11:13  135编辑器\css\ueditor.min.css
     目录           0  2015-06-03 11:18  135编辑器\images\
     文件      104848  2015-06-03 11:18  135编辑器\images\bg1.jpg
     文件      149362  2015-06-08 16:50  135编辑器\index135.html
     目录           0  2015-06-03 14:51  135编辑器\js\
     文件      121707  2015-06-03 11:06  135编辑器\js\0d46f20dfa.js
     文件      129076  2015-06-03 14:17  135编辑器\js\6a071833a5.js
     文件      188402  2015-06-03 14:20  135编辑器\js\c2ec280ea1.js
     文件       20555  2015-06-03 12:36  135编辑器\js\h.js
     文件       21151  2015-06-03 12:41  135编辑器\js\hm.js
     文件       42422  2015-06-03 14:18  135编辑器\js\jquery.Jcrop.js
     文件      369236  2015-06-03 14:16  135编辑器\js\ueditor.all.min.js
     文件       17642  2015-06-03 14:50  135编辑器\js\ueditor.config2.js
     目录           0  2015-06-03 11:38  135编辑器\ueditor\
     文件        8283  2014-05-15 22:59  135编辑器\ueditor\Gruntfile.js
     文件        1073  2014-05-15 22:59  135编辑器\ueditor\LICENSE
     文件        2719  2014-05-15 22:59  135编辑器\ueditor\README.md
     目录           0  2014-05-16 14:17  135编辑器\ueditor\_doc\
     文件        2747  2014-05-15 22:59  135编辑器\ueditor\_doc\1.1 开始使用ueditor.md
     文件        3879  2014-05-15 22:59  135编辑器\ueditor\_doc\1.2 定制工具栏图标.md
     文件        3788  2014-05-15 22:59  135编辑器\ueditor\_doc\1.3 编辑内容展示.md
     文件       15392  2014-05-15 22:59  135编辑器\ueditor\_doc\1.4 前端配置项说明.md
     文件         818  2014-05-15 22:59  135编辑器\ueditor\_doc\1.5 提交数据说明.md
     文件        1314  2014-05-15 22:59  135编辑器\ueditor\_doc\2.1 上传视频.md
     文件        1090  2014-05-15 22:59  135编辑器\ueditor\_doc\2.2 目录说明.md
............此处省略592个文件信息

评论

共有 条评论