您的位置:首页 > 编程语言 > Java开发

struts+newxy(新坐标)文件上传,比jspsmart更简单 作者:胡立新

2006-07-05 08:46 645 查看
newxy1.02文件上传到文件夹、到数据库的方法如下:

1.上传文件到服务器文件夹中的方法:
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="/WEB-INF/newxy-html.tld" prefix="nhtml"%>
<%@ taglib uri="/WEB-INF/newxy-logic.tld" prefix="nlogic"%>

<nlogic:action1 id="act1" formName="fileForm"/>
<nhtml:form action="" formName="fileForm" enctype="multipart/form-data">
文件夹:<input type="text" name="_directory" size="40"/><br />
文件1,不大于1024K:<nhtml:file property="file1" size="40" maxSize="1024"/><br />
文件2,不大于1024K:<nhtml:file property="file2" size="40" maxSize="1024"/><br />
</nhtml:form>
<nhtml:button actionId="act1" method="upload"/>

2.上传文件到数据库中的方法:
<%@ page contentType="text/html; charset=GBK" %>
<%@ taglib uri="/WEB-INF/newxy-html.tld" prefix="nhtml"%>
<%@ taglib uri="/WEB-INF/newxy-logic.tld" prefix="nlogic"%>

<nlogic:action1 id="act1" formName="fileForm"/>
<nhtml:form action="" formName="fileForm" enctype="multipart/form-data">
数据库表名:<input type="text" name="_table" size="40"/><br />
说明:<input type="text" name="explain" size="40"/><br />
文件1,不大于1024K:<nhtml:file property="file1" size="40" maxSize="1024"/><br />
文件2,不大于1024K:<nhtml:file property="file2" size="40" maxSize="1024"/><br />
</nhtml:form>
<nhtml:button actionId="act1" method="update"/>

不写一句java代码。

newxy技术网站:http://www.newxy.net
有关文件上传:
文件上传至文件夹: http://www.newxy.net/doc.jsp#anchor15.1
文件上传至数据库: http://www.newxy.net/doc.jsp#anchor15.2
文件上传至文件夹与上传至数据库的比较:http://www.newxy.net/doc.jsp#anchor15.3
有关范例:
http://www.newxy.net/zh_cn/samples/sample2/demo.jsp
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: