有人使用过kindeditor吗?jsp版本的?上传图片时显示“上传目录不存在”是什么原因? 5
我手动建立了文件夹(我这很奇怪,有时可以自动建立),插入图片时显示“undefined”报错:java.lang.ClassCastException:org.apach...
我手动建立了文件夹(我这很奇怪,有时可以自动建立),插入图片时显示“undefined” 报错:java.lang.ClassCastException: org.apache.catalina.connector.RequestFacade cannot be cast to org.apache.struts2.dispatcher.multipart.MultiPartRequestWrapper知道怎么解决吗?
展开
2个回答
展开全部
uploadJson:指定处理图片上传的jsp地址
然后再改该jsp中
//文件保存目录路径
String savePath = pageContext.getServletContext().getRealPath("/") + "attached/";
指定上传的保存地址,该目录必须是真实存在的
KindEditor.ready(function(K) {
editor1 = K.create('textarea[name="context"]', {
cssPath : "<c:url value='/js/kindeditor/plugins/code/prettify.css'/>",
uploadJson : "<c:url value='/js/kindeditor/jsp/upload_json.jsp'/>",
fileManagerJson : "<c:url value='/js/kindeditor/jsp/file_manager_json.jsp'/>",
....
jsp:
//文件保存目录路径
String savePath = pageContext.getServletContext().getRealPath("/") + "attached/";
//String realPath = request.getRealPath("\\")+"js\\ueditor\\server\\upload\\" + filePath;
//判断路径是否存在,不存在则创建
File dir = new File(savePath);
if(!dir.isDirectory())
dir.mkdir();
//文件保存目录URL
String saveUrl = request.getContextPath() + "/attached/";
然后再改该jsp中
//文件保存目录路径
String savePath = pageContext.getServletContext().getRealPath("/") + "attached/";
指定上传的保存地址,该目录必须是真实存在的
KindEditor.ready(function(K) {
editor1 = K.create('textarea[name="context"]', {
cssPath : "<c:url value='/js/kindeditor/plugins/code/prettify.css'/>",
uploadJson : "<c:url value='/js/kindeditor/jsp/upload_json.jsp'/>",
fileManagerJson : "<c:url value='/js/kindeditor/jsp/file_manager_json.jsp'/>",
....
jsp:
//文件保存目录路径
String savePath = pageContext.getServletContext().getRealPath("/") + "attached/";
//String realPath = request.getRealPath("\\")+"js\\ueditor\\server\\upload\\" + filePath;
//判断路径是否存在,不存在则创建
File dir = new File(savePath);
if(!dir.isDirectory())
dir.mkdir();
//文件保存目录URL
String saveUrl = request.getContextPath() + "/attached/";
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询