1,饶了一大圈,发现是返回的物理路径“/”问题,在controller.jsp里做如下修改:
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 );