当前位置: 首页 > 工具软件 > Jweb-adai > 使用案例 >

Jweb10-富文本编辑器+上传文件

谯和煦
2023-12-01

①:使用富文本编辑器:

第一步:复制文件夹:fckeditor,

第二步:复制 包 (3个包 fckeditor && slf-api-1.5.2.jar && slf4j-simple-1.5.2.jar )

第三步:导包语句: <%@taglib prefix="fc" uri="http://java.fckeditor.net" %>

prefix :属性

uri:路径

运用:<form action="路径">
        <fc:editor instanceName="str"></fc:editor>
        <input type="submit" value="提交">
    </form>

instanceName:属性 相当于之前的 name

接收:String str=request.getParameter("str");

②上传文件:

send.jsp:

<body>

<form action="d.jsp" enctype="multipart/form-data" method="post">
		<input type="file" name="myfile"><br>
		<input type="submit" value="开始上传">
</form>

</body>

DoSend.jsp:

//创建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+"'>");
	
%>

 类似资料: