1.文本编辑器
为了让我的评论页面更加好看,更加花里胡哨,所有用到了文本编辑器。
实现代码如下:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@taglib prefix="fc" uri="http://java.fckeditor.net" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
</head>
<body>
<form action="">
<fc:editor instanceName="str"></fc:editor>
<input type="submit" value="提交">
</form>
</body>
</html>
<%@taglib prefix="fc" uri="http://java.fckeditor.net" %> 导包语句
可以对文本进行编辑操作,以及添加图片、添加表情等等,使我们在评论的时候可评论的东西就越多,越形象
效果图:
二.SmartUpload文件上传
1.引入SmartUpload
<form action="dosendFile.jsp" enctype="multipart/form-data" method="post">
<input type="file" name="myfile"><br>
<input type="submit" value="开始上传">
</form>
2.读入数据
代码如下:
//创建SmartUpload对象
SmartUpload su = new SmartUpload();
//初始化
su.initialize(pageContext);
//声明一个File对象 用来接收上传的文件
File file = null;
//设置允许上传的文件类型
su.setAllowedFilesList("jpg,png,gif,");
//设置不允许上传的文件类型
su.setDeniedFilesList("bat,exe,mp4");
//设置单文件大小
su.setMaxFileSize(40000);
//设置总文件大小
su.setTotalMaxFileSize(50000);
//设置编码
su.setCharset("utf-8");
//开始上传
su.upload();
//获取文件集合中的第一个文件
file = su.getFiles().getFile(0);
String filePath = "";
if(!file.isMissing()){
//拼接文件上传到服务器的 路径
filePath = "onload/"+file.getFileName();
//上传到服务器 保存到指定路径
file.saveAs(filePath,SmartUpload.SAVE_VIRTUAL);
}
out.print("上传成功");
out.print("<img src='"+filePath+"'>");
Request req = su.getRequest();
request.setCharacterEncoding("utf-8");
response.setCharacterEncoding("utf-8");
String uname = req.getParameter("uname");
out.print(uname);
注意:
该处使用了SmartUpload对象,它会和request对象产生冲突,使request对象获取不到值,所以需要使用Request的req来获取数据
。在使用文本编辑器和SmartUpload文件上传都需要相对应的jar文件。