导入支持
<!--导入在线HTML编辑器 -->
<script type="text/javascript" src="../../editor/kindeditor.js" ></script>
<script type="text/javascript" src="../../editor/lang/zh_CN.js" ></script>
<link rel="stylesheet" href="../../editor/themes/default/default.css" />
具体页面提供textarea
<textarea id="description" name="description" style="width:80%" rows="20"></textarea>
编写js代码
KindEditor.ready(function(K) {
window.editor = K.create('#description');
allowFileManager:true,
uploadJson : '../../image_upload.action',
fileManagerJson : '../../image_manage.action'
});
});
语法:K.create(‘#id’,{options}); 参数采用key-value格式
采用items属性定制工具栏按钮显示
{
items : ['source', '|', 'undo', 'redo', '|', 'preview', 'print', 'template', 'code', 'cut', 'copy', 'paste','plainpaste', 'wordpaste', '|', 'justifyleft', 'justifycenter', 'justifyright','justifyfull', 'insertorderedlist', 'insertunorderedlist', 'indent', 'outdent', 'subscript','superscript', 'clearhtml', 'quickformat', 'selectall', '|', 'fullscreen', '/','formatblock', 'fontname', 'fontsize', '|', 'forecolor', 'hilitecolor', 'bold', 'italic', 'underline', 'strikethrough', 'lineheight', 'removeformat', '|', 'image', 'multiimage','flash', 'media', 'insertfile', 'table', 'hr', 'emoticons', 'baidumap', 'pagebreak','anchor', 'link', 'unlink', '|', 'about']
}
使用kindeditor使用图片上传编辑显示功能,需要指定uploadJson和fileManagerJson,默认采用PHP实现,如果使用java实现,需要设置初始化参数
{
allowFileManager:true,
uploadJson : '../../image_upload.action',
fileManagerJson : '../../image_manage.action'
}
在服务器编写ImageAction,处理kindeditor文件上传功能
package com.ikayaki.bos.web.action.take_delivery;
import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.UUID;
import org.apache.commons.io.FileUtils;
import org.apache.struts2.ServletActionContext;
import org.apache.struts2.convention.annotation.Action;
import org.apache.struts2.convention.annotation.Namespace;
import org.apache.struts2.convention.annotation.ParentPackage;
import org.apache.struts2.convention.annotation.Result;
import org.springframework.context.annotation.Scope;
import org.springframework.stereotype.Controller;
import com.ikayaki.bos.web.action.common.BaseAction;
import com.opensymphony.xwork2.ActionContext;
@ParentPackage("json-default")
@Namespace("/")
@Controller
@Scope("prototype")
public class ImageAction extends BaseAction<Object> {
private static final long serialVersionUID = 1L;
private File imgFile;
private String imgFileFileName;
private String imgFileContentType;
public void setImgFile(File imgFile) {
this.imgFile = imgFile;
}
public void setImgFileFileName(String imgFileFileName) {
this.imgFileFileName = imgFileFileName;
}
public void setImgFileContentType(String imgFileContentType) {
this.imgFileContentType = imgFileContentType;
}
@Action(value = "image_upload", results = { @Result(name = "success", type = "json") })
public String upload() throws IOException {
System.out.println("文件:" + imgFile);
System.out.println("文件名:" + imgFileFileName);
System.out.println("文件类型:" + imgFileContentType);
String savePath = ServletActionContext.getServletContext().getRealPath(
"/upload/");
String saveUrl = ServletActionContext.getRequest().getContextPath()
+ "/upload/";
// 生成随机图片名
UUID uuid = UUID.randomUUID();
String ext = imgFileFileName
.substring(imgFileFileName.lastIndexOf("."));
String randomFileName = uuid + ext;
// 保存图片 (绝对路径)
File destFile = new File(savePath + "/" + randomFileName);
System.out.println(destFile.getAbsolutePath());
FileUtils.copyFile(imgFile, destFile);
// 通知浏览器文件上传成功
Map<String, Object> result = new HashMap<String, Object>();
result.put("error", 0);
result.put("url", saveUrl + randomFileName); // 返回相对路径
ActionContext.getContext().getValueStack().push(result);
return SUCCESS;
}
}
在页面点击图片空间,发送请求image_manage.action
fileManagerJson : '../../image_manage.action'
ImageAction添加manage方法
@Action(value = "image_manage", results = { @Result(name = "success", type = "json") })
public String manage() {
// 根目录路径,可以指定绝对路径,比如 d:/xxx/upload/xxx.jpg
String rootPath = ServletActionContext.getServletContext().getRealPath(
"/")
+ "upload/";
// 根目录URL,可以指定绝对路径,比如 http://www.yoursite.com/attached/
String rootUrl = ServletActionContext.getRequest().getContextPath()
+ "/upload/";
// 遍历目录取的文件信息
List<Map<String, Object>> fileList = new ArrayList<Map<String, Object>>();
// 当前上传目录
File currentPathFile = new File(rootPath);
// 图片扩展名
String[] fileTypes = new String[] { "gif", "jpg", "jpeg", "png", "bmp" };
if (currentPathFile.listFiles() != null) {
for (File file : currentPathFile.listFiles()) {
Map<String, Object> hash = new HashMap<String, Object>();
String fileName = file.getName();
if (file.isDirectory()) {
hash.put("is_dir", true);
hash.put("has_file", (file.listFiles() != null));
hash.put("filesize", 0L);
hash.put("is_photo", false);
hash.put("filetype", "");
} else if (file.isFile()) {
String fileExt = fileName.substring(
fileName.lastIndexOf(".") + 1).toLowerCase();
hash.put("is_dir", false);
hash.put("has_file", false);
hash.put("filesize", file.length());
hash.put("is_photo", Arrays.<String> asList(fileTypes)
.contains(fileExt));
hash.put("filetype", fileExt);
}
hash.put("filename", fileName);
hash.put("datetime",
new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(file
.lastModified()));
fileList.add(hash);
}
}
Map<String, Object> result = new HashMap<String, Object>();
result.put("moveup_dir_path", "");
result.put("current_dir_path", rootPath);
result.put("current_url", rootUrl);
result.put("total_count", fileList.size());
result.put("file_list", fileList);
ActionContext.getContext().getValueStack().push(result);
return SUCCESS;
}
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系我们删除。