CKEditor 在jsp中实现文件上传

更新时间:2023-06-05 19:52:01 阅读量: 实用文档 文档下载

说明:文章内容仅供预览,部分内容可能不全。下载后的文档,内容与下面显示的完全一致。下载之前请确认下面内容是否您想要的,是否完整无缺。

CKEditor 在jsp中实现文件上传

CKEditor 在jsp中实现文件上传的完整例子 2010-03-26 12:23:01 阅读1907 评论7 字号:大中小 订阅

备注:转载请注明出处

CKEditor是一个优秀的网页编辑器,但网上的jsp实现上传的例子很少,经过几天的搜索与钻研,终于上传成功,特别感谢: /u/20100127/11/d2254308-db90-4b1f-adca-b36bd8956264.html的作者.

下面我们开始配置上传:

我们用的是ckeditor_3.2 + struts2 ,用struts2的fileUploadStack实现

1:我们将ckeditor_3.2 下载,可以到官方网站上下载:

2.下载下来我们进行安装, 解压压缩文件,.解压缩后得到ckeditor的程序文件夹,里面一些无用的文件可以删除,比如例子_samples,未压缩的源代码_source等.只保留以下文件即可:

其中skins文件夹是皮肤文件夹,三种皮肤可任选其一。把这些整理好的文件放到项目WebRoot下

3.配置ckeditor:

其中ckeditor 的配置网上教程很多,这里不作太多解释,只是看一下我的配置:在config.js中配置如下:

CKEDITOR.editorConfig = function(config) {

nguage = 'zh-cn'; // 配置语言

config.uiColor = '#FFF'; // 背景颜色

config.width = 'auto'; // 宽度

config.height = '300px'; // 高度

config.skin = 'office2003';//界面v2,kama,office2003

CKEditor 在jsp中实现文件上传

config.toolbar = 'Full';// 工具栏风格Full,Basic

};

4.在页面中引用:如下

<textarea cols="80" id="content" name="fileUpload">

</textarea>

<script type="text/javascript">

CKEDITOR.replace('content'); //content为textarea的id

</script>

效果图

:

点击图片按钮,效果图为

CKEditor 在jsp中实现文件上传

这其中没有上传按钮,只有一个”源文件”引用文件的路径文本框,虽然能开启上传功能:但经我测试其上传在服务器上的不到文件的值;

5:经我几天的查找资料:是

的作者让我上传图片成功:再次特别感谢:

在插入image对话框的URL文本框的旁边放一个我自己的Upload按钮,点击后页面转入我自己定义的文件/图片上传页面,接下来我自己处理upload的整个过程。最后返回一个url,通过这个url可以看到图片

借助CKEditor强大的扩展能力,我们完全可以以javascript实现这一目标。

修改代码如下:

<textarea cols="80" id="content" name="fileUpload"> </textarea>

<script type="text/javascript">

CKEDITOR.replace('content',addUploadButton(this));

function addUploadButton(editor){

CKEditor 在jsp中实现文件上传

CKEDITOR.on('dialogDefinition', function( ev ){

var dialogName = ;

var dialogDefinition = ev.data.definition;

if ( dialogName == 'image' ){

var infoTab = dialogDefinition.getContents( 'info' );

infoTab.add({

type : 'button',

id : 'upload_image',

align : 'center',

label : '上传',

onClick : function( evt ){

var thisDialog = this.getDialog();

var txtUrlObj = thisDialog.getContentElement('info', 'txtUrl');

var txtUrlId = txtUrlObj.getInputElement().$.id;

addUploadImage(txtUrlId);

}

}, 'browse'); //place front of the browser button

}

});

}

function addUploadImage(theURLElementId){

var uploadUrl = "../platform/uploadsFiles.jsp"; //这是我自己的处理文件/图片上传的页面URL

var imgUrl = window.showModalDialog(uploadUrl);

//在upload结束后通过js代码window.returnValue=...可以将图片url返回给imgUrl变量。

//更多window.showModalDialog的使用方法参考

var urlObj = document.getElementById(theURLElementId);

urlObj.value = imgUrl;

urlObj.fireEvent("onchange"); //触发url文本框的onchange事件,以便预览图片

}

</script>

CKEditor 在jsp中实现文件上传

说明:CKEditor的扩展基本上都是通过on方法实现的。on方法有2个参数,第一个是CKEditor内部的各种事件名称,类似一个钩子。第二个参数是要扩展的代码,通常是一个js函数。因为我们要改动的是image对话框,所以对应的事件名称是dialogDefinition,对话框的名字是image。image url文本框在info选项卡内,通过getContents('info')定位到该选项卡,然后通过infoTab.add()方法就可以在选项卡内添加新的元素了。元素定义是JSON格式。我们这里定义了一个button,其中包括标签(label)和点击(onClick)以后要执行的动作(通常也是个js函数)。infoTab.add()第二个参数是用来指定新元素的位置-在该元素之前。如果不提供这个参数则新元素放在选项卡最后。我们在这里将这个新的Upload按钮放在CKEditor默认的browser按钮前面。

upload按钮点击后就是进行upload动作。这个是通过addUploadImage()完成的。该函数接受一个id参数,用来指定upload完成后图片的url返回给哪个表单元素。通过查看源代码可知图片URL文本框的id是txtUrl,但该id是CKEditor自己内部的id,不是页面上最终生成的HTML的id。不过CKEditor也提供了方法getContentElement()和getInputElement()进行2者的转换。

addUploadImage函数内容也很简单,先指定我自己的文件上传页面的URL,然后在一个模态窗口中打开这个页面,处理文件上传的所有细节。最终的结果是将图片上传后在服务器上的URL地址返回给一个变量imgUrl。最后把这个变量赋值给传进来的图片URL文本框里。最后手工触发一下onchange事件,这样在image对话框里就能看到图片的预览效果了。

效果如下:

点击“上传”按钮:如图:

CKEditor 在jsp中实现文件上传

这是弹出的网页对话框:

其中代码如下:

<body>

<s:form action="fileUploadsss" method="POST" name="pos"

enctype="multipart/form-data" target="smz">

<iframe name="smz" width="0" height="0" frameborder="0"

style="display: none"></iframe>

<table width="80%" border="1" cellspacing="0" cellpadding="0">

<tr>

<td width="20%" align="right">

<font color="red">*</font>上传图片文件

</td>

<td width="20%">

<s:file name="myFile"></s:file>

<s:submit value="上传"></s:submit>

</tr>

</table>

</s:form>

<s:hidden name="pagePath" id="_page_path"></s:hidden>

</body>

<script type="text/javascript">

var _page_path = document.getElementById("_page_path").value;

if(null!=_page_path && ""!=_page_path){

window.returnValue=_page_path;

window.close();

CKEditor 在jsp中实现文件上传

}

</script>

说明:《1》iframe name="smz" 是防止提交后页面跳转的,其中name与s:form的target字段相同 《2》s:hidden name="pagePath" 是后台向前台传递的图片在服务器的位置路径

《3》js: window.returnValue=_page_path; 是网页对话框向父页面传值

6:struts2上传配置(即点击上传按钮时要执行的程序)

Web.xml中配置如下:

<filter>

<filter-name> struts-cleanup </filter-name >

<filter-class>

org.apache.struts2.dispatcher.ActionContextCleanUp

</filter-class>

</filter>

<filter-mapping >

<filter-name > struts-cleanup </filter-name >

<url-pattern > /* </url-pattern >

</filter-mapping >

<filter>

<filter-name>struts2</filter-name>

<filter-class>

org.apache.struts2.dispatcher.FilterDispatcher

</filter-class>

</filter>

<filter-mapping>

<filter-name>struts2</filter-name>

<url-pattern>/*</url-pattern>

</filter-mapping>

在struts.xml中配置如下:

CKEditor 在jsp中实现文件上传

<action name ="fileUploadsss" class="处理上传action路径" >

<interceptor-ref name ="fileUploadStack" />

<result name ="success">../platform/uploadsFiles.jsp</result >

</action >

说明:返回结果应到那”网页对话框页面”

处理上传action代码:

import java.io.BufferedInputStream;

import java.io.BufferedOutputStream;

import java.io.File;

import java.io.FileInputStream;

import java.io.FileOutputStream;

import java.io.InputStream;

import java.io.OutputStream;

import java.util.Date;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts2.ServletActionContext;

import com.opensymphony.xwork2.ActionSupport;

public class FileUploadAction extends ActionSupport {

private static final long serialVersionUID = 572146812454l ;

private static final int BUFFER_SIZE = 16 * 1024 ;

private File myFile; //网页中file字段的name

private String contentType; //struts2中必须字段,主要是set方法

private String fileName; // struts2中必须字段,主要是set方法

private String imageFileName; //要上传的图片在服务器中的名称

private String imagePath; //保存服务器中的路径

private String pagePath; //页面中要引用的url

public String getPagePath() {

return pagePath;

CKEditor 在jsp中实现文件上传

}

public void setPagePath(String pagePath) {

this.pagePath = pagePath;

}

public String getImagePath() {

return imagePath;

}

public void setImagePath(String imagePath) {

this.imagePath = imagePath;

}

public void setMyFileContentType(String contentType) {

this.contentType = contentType;

}

public void setMyFileFileName(String fileName) {

this.fileName = fileName;

}

public void setMyFile(File myFile) {

this .myFile = myFile;

}

public String getImageFileName() {

return imageFileName;

}

private static void copy(File src, File dst) {

try {

InputStream in = null ;

OutputStream out = null ;

CKEditor 在jsp中实现文件上传

try {

in = new BufferedInputStream( new FileInputStream(src), BUFFER_SIZE);

out = new BufferedOutputStream( new FileOutputStream(dst), BUFFER_SIZE);

byte [] buffer = new byte [BUFFER_SIZE];

while (in.read(buffer) > 0 ) {

out.write(buffer);

}

} finally {

if ( null != in) {

in.close();

}

if ( null != out) {

out.close();

}

}

} catch (Exception e) {

e.printStackTrace();

}

}

@Override

public String execute() {

imageFileName = new Date().getTime() + fileName; //此名称用当前时间与上传图片名组成

imagePath = ServletActionContext.getServletContext().getRealPath( "ckeditor/images/Image" ) + "\\" + imageFileName;

System.out.println(imagePath);

pagePath = getWebPath()+"ckeditor/images/Image" + "\\" + imageFileName; //页面引用位置 System.out.println(pagePath);

File imageFile = new File(imagePath);

copy(myFile, imageFile);

return SUCCESS;

}

CKEditor 在jsp中实现文件上传

private String getWebPath(){

HttpServletRequest request = ServletActionContext.getRequest ();

String path = request.getContextPath();

String basePath = request.getScheme() + "://"

+ request.getServerName() + ":" + request.getServerPort() + path + "/";

return basePath;

}

}

7.上传完成页面如图:

至此上传完成。最后看张完整效果图:

CKEditor 在jsp中实现文件上传

本文来源:https://www.bwwdw.com/article/x441.html

Top