WEB项目中使用UEditor(富文本编辑器)

时间:2023-03-08 17:05:58

Ueditor富文本编辑器是在很多项目里经常用到的框架,是百度开发团队开发的一款很好用的富文本编辑器

下面就是我在一个系统里用到的,有了富文本编辑器,管理员使用起来不是很方便?

所以本博客介绍这个富文本编辑器的使用哈!觉得写得不错的请点赞哈,有建议欢迎提哈!^V^

WEB项目中使用UEditor(富文本编辑器)

下载链接:http://ueditor.baidu.com/website/download.html

具体的使用请看官网:http://ueditor.baidu.com/website/index.html

下载富文本编辑器后,我们打开MyEclipse或者其它编辑软件,选择file->import,选择文件系统,导入下载好的Ueditor

WEB项目中使用UEditor(富文本编辑器)

然后启动tomcat服务器

http://localhost:8080/项目名称t/ueditor1_4_3_2/jsp/controller.jsp?action=config

这个要根据你的项目进行修改的哈

可以输出这个,什么编辑器导入成功

WEB项目中使用UEditor(富文本编辑器)

引入js,charset属性设置为UTF-8的,因为我的系统默认是UTF-8的

  1. <span style="font-size:18px;"><script type="text/javascript" charset="UTF-8" src="<%=basePath %>ueditor1_4_3_2/ueditor.config.js"></script>
  2. <script type="text/javascript" charset="UTF-8" src="<%=basePath %>ueditor1_4_3_2/ueditor.all.min.js"> </script></span>

复制ueditor里面的index,html代码,这个要根据需要去复制的

  1. <span style="font-size:18px;"><script type="text/javascript">
  2. //实例化编辑器
  3. //建议使用工厂方法getEditor创建和引用编辑器实例,如果在某个闭包下引用该编辑器,直接调用UE.getEditor('editor')就能拿到相关的实例
  4. var ue = UE.getEditor('editor');
  5. function getContent() {
  6. var arr = [];
  7. arr.push("使用editor.getContent()方法可以获得编辑器的内容");
  8. arr.push("内容为:");
  9. arr.push(UE.getEditor('editor').getContent());
  10. alert(arr.join("\n"));
  11. }
  12. </script></span>

因为我做的系统只要实现将编辑的文本和样式一起写入数据库,所以只要使用getContext方法就可以

在form表单里加入:

  1. <script id="editor" type="text/plain" style="width:1024px;height:500px;"></script>

注意这些属性都不用随便修改的哦

获取文本和文本样式的参考代码,

String introduction = new String(request.getParameter("editorValue").getBytes("iso-8859-1"),"UTF-8");
  这个就是获取文本和文本样式的代码,然后下面的代码只是参考的,只要用String introduction = new String(request.getParameter("editorValue").getBytes("iso-8859-1"),"UTF-8");
  这代码就可以获取内容

  1. public class AddSpotInfoServlet extends HttpServlet {
  2. /**
  3. *
  4. */
  5. private static final long serialVersionUID = 1L;
  6. /**
  7. *
  8. */
  9. public void doGet(HttpServletRequest request, HttpServletResponse response)
  10. throws ServletException, IOException {
  11. response.setContentType("text/html;charset=UTF-8");
  12. PrintWriter out = response.getWriter();
  13. request.setCharacterEncoding("UTF-8");
  14. String introduction = new String(request.getParameter("editorValue").getBytes("iso-8859-1"),"UTF-8");
  15. String picture = Constant.ImgPath.path;
  16. String position = new String(request.getParameter("position").getBytes("iso-8859-1"),"UTF-8");
  17. String priceString = new String(request.getParameter("price").getBytes("iso-8859-1"),"UTF-8");
  18. Double price = Double.parseDouble(priceString);
  19. String sortString = new String(request.getParameter("sort").getBytes("iso-8859-1"),"UTF-8");
  20. int spot_sort = Integer.parseInt(sortString);
  21. //      String timeString = new String(request.getParameter("time").getBytes("iso-8859-1"),"UTF-8");
  22. //      Date time = Date.valueOf(timeString);
  23. String tour_project = new String(request.getParameter("tour_project").getBytes("iso-8859-1"),"UTF-8");
  24. Spot spot = new Spot();
  25. spot.setIntroduction(introduction);
  26. spot.setPicture(picture);
  27. spot.setPosition(position);
  28. spot.setPrice(price);
  29. spot.setSpot_sort(spot_sort);
  30. spot.setTour_project(tour_project);
  31. SpotDAO spotDao = new SpotDAOImpl();
  32. boolean flag = spotDao.addInfo(spot);
  33. if(flag){
  34. response.sendRedirect(Constant.WEB_URL_SPOT_SERVLET);
  35. }
  36. out.flush();
  37. out.close();
  38. }
  39. /**
  40. *
  41. */
  42. public void doPost(HttpServletRequest request, HttpServletResponse response)
  43. throws ServletException, IOException {
  44. doGet(request, response);
  45. }
  46. }

ok,可以将文本和样式一起写入数据库了,哈哈哈,^V^

WEB项目中使用UEditor(富文本编辑器)