123456789101112131415161718192021 |
- <%@ page language="java" contentType="text/html; charset=UTF-8"
- import="org.cs.ueditor.ActionEnter" pageEncoding="UTF-8"%>
- <%@ page trimDirectiveWhitespaces="true"%>
- <%
- request.setCharacterEncoding( "utf-8" );
- response.setHeader("Content-Type" , "text/html");
-
- String rootPath = application.getRealPath( "/" );
- String action = request.getParameter("action");
- String result = new ActionEnter( request, rootPath ).exec();
- if( action!=null && (action.equals("listfile") || action.equals("listimage") ) ){
- rootPath = rootPath.replace("\\", "/");
- result = result.replaceAll(rootPath, "/");//把返回路径中的物理路径替换为 '/'
- }
- out.write( result );
-
- //out.write( new ActionEnter( request, rootPath ).exec() );
-
- %>
|