ueditor 编辑器在java项目中无法从本地上传图片,如何解决?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ueditor 编辑器在java项目中无法从本地上传图片,如何解决?相关的知识,希望对你有一定的参考价值。

涂鸦,网络的图片都可以。就是本地上传不行怎么解决?
我自己回答吧,http://www.cnblogs.com/taoweiji/p/3269856.html
在进入到imageUp.jsp中
FileItemIterator fii = sfu.getItemIterator(request);
解析request 请求,并返回FileItemIterator集合
但是没有从集合中获得一个文件流
就没有进while(fii.hasNext()) 执行fii.hasNext()是false。
什么原因呢。说是struts封装了request。
所以这里要让struts过滤掉这个jsp页面的部分信息。
在struts.xml加入

<constant name="struts.action.excludePattern" value="/resource/.*" />
(也我的ueditor文件夹在resource里面,所以直接过滤了这个整个文件夹)

参考技术A 那个editor的路径一定要设置正确了,才行

解决ueditor编辑器图片在线管理图片无法显示

使用ueditor,点击在线管理,服务器图片路径显示不正确,如下图所示


技术分享
 查看源码,如下:


技术分享
 发现图片src中中间多了一长串的项目跟路径,解决的办法是

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

 

[java] view plain copy
  1. <%@ page language="java" contentType="text/html; charset=UTF-8"  
  2.    
  3.     import="com.baidu.ueditor.ActionEnter"  
  4.    
  5.     pageEncoding="UTF-8"%>  
  6. <%@ page trimDirectiveWhitespaces="true" %>  
  7. <%  
  8. request.setCharacterEncoding( "utf-8" );  
  9. response.setHeader("Content-Type" , "text/html");  
  10.    
  11. String rootPath = application.getRealPath( "/" );  
  12.    
  13. String action = request.getParameter("action");  
  14. String result = new ActionEnter( request, rootPath ).exec();  
  15. if( action!=null &&   
  16.    (action.equals("listfile") || action.equals("listimage") ) ){  
  17.     rootPath = rootPath.replace("\\", "/");  
  18.     result = result.replaceAll(rootPath, "/");  
  19. }  
  20. out.write( result );  
  21. %>  

然后改config.json

 

 

[java] view plain copy
  1. /* 列出指定目录下的图片 */  
  2.    "imageManagerActionName": "listimage", /* 执行图片管理的action名称 */  
  3.    "imageManagerListPath": "/ueditor/jsp/upload/image/", /* 指定要列出图片的目录 */  
  4.    "imageManagerListSize": 20, /* 每次列出文件数量 */  
  5.    "imageManagerUrlPrefix": "/ueditor", /* 图片访问路径前缀 */  
  6.    "imageManagerInsertAlign": "none", /* 插入的图片浮动方式 */  
  7.    "imageManagerAllowFiles": [".png", ".jpg", ".jpeg", ".gif", ".bmp"], /* 列出的文件类型 */  




以上是关于ueditor 编辑器在java项目中无法从本地上传图片,如何解决?的主要内容,如果未能解决你的问题,请参考以下文章

解决ueditor编辑器图片在线管理图片无法显示

如何从word中复制内容到网站后台编辑器中

word黏贴图片显示不出来

ueditor 配置和上传图片

Ueditor上传本地音频MP3

请问:百度Ueditor编辑器为啥不能上传图片啊?在ASP中,请求高手指教。