ueditor 图片在线管理显示不了

把  jsp/controller.jsp 里面的代码修改一下

[java]  view plain  copy
  1.     String action = request.getParameter("action");    
  2.     String result = new ActionEnter( request, rootPath ).exec();    
  3. //在下面判断如果是列出文件或图片的,替换物理路径的“/”  
  4.     if( action!=null && (action.equals("listfile") || action.equals("listimage") ) ){    
  5.         rootPath = rootPath.replace("\\", "/");    
  6.         result = result.replaceAll(rootPath, "/");  
  7.     }    
  8.     out.write( result );    

你可能感兴趣的:(ueditor 图片在线管理显示不了)