资源简介

一套非常优秀而且漂亮的web后台管理页面模板,列表,详细,表达,报表等都有体现。

资源截图

代码片段和文件信息

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 () {

String callbackName = this.request.getParameter(“callback“);

if ( callbackName != null ) {

if ( !validCallbackName( callbackName ) ) {
return new baseState( false AppInfo.ILLEGAL ).toJSONString();
}

return callbackName+“(“+this.invoke()+“);“;

} else {
return this.invoke();
}

}

public String invoke() {

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;
}

}

/**
 * callback参数验证
 */
public boolean valid

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2017-02-16 16:07  网站后台管理系统\
     文件       14369  2017-02-16 16:07  网站后台管理系统\Add_Brand.html
     文件       15354  2017-02-16 16:07  网站后台管理系统\Ads_list.html
     文件        1466  2017-02-16 16:07  网站后台管理系统\Amounts.html
     文件       19701  2017-02-16 16:07  网站后台管理系统\Brand_Manage.html
     文件       23767  2017-02-16 16:07  网站后台管理系统\Brand_detailed.html
     文件        4886  2017-02-16 16:07  网站后台管理系统\Category_Manage.html
     文件       19068  2017-02-16 16:07  网站后台管理系统\Competence.html
     文件        1466  2017-02-16 16:07  网站后台管理系统\Cover_management.html
     文件        7624  2017-02-16 16:07  网站后台管理系统\Feedback.html
     文件        9374  2017-02-16 16:07  网站后台管理系统\Guestbook.html
     文件        1466  2017-02-16 16:07  网站后台管理系统\Order_handling.html
     文件       19468  2017-02-16 16:07  网站后台管理系统\Orderform.html
     文件       23470  2017-02-16 16:07  网站后台管理系统\Products_List.html
     文件        9275  2017-02-16 16:07  网站后台管理系统\Sort_ads.html
     文件        6132  2017-02-16 16:07  网站后台管理系统\Systems.html
     目录           0  2017-02-16 16:06  网站后台管理系统\Widget\
     目录           0  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\
     文件       10235  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\WdatePicker.js
     文件       22544  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\calendar.js
     目录           0  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\lang\
     文件         644  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\lang\en.js
     文件        1089  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\lang\zh-cn.js
     文件        1088  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\lang\zh-tw.js
     目录           0  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\skin\
     文件        3072  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\skin\Thumbs.db
     文件         144  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\skin\WdatePicker.css
     文件        1043  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\skin\datePicker.gif
     目录           0  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\skin\default\
     文件        3360  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\skin\default\datepicker.css
     文件        1578  2017-02-16 16:07  网站后台管理系统\Widget\My97DatePicker\skin\default\img.gif
............此处省略832个文件信息

评论

共有 条评论