建立一个Login表单
这是一个Login表单的简单示例,这个示例显示了通过Struts来处理表单比通过HTML和标准的JSP来处理表单轻松很多。请参看下面这个叫logon.jsp的页面(基于Struts包括的MailReader例子):
<%@ page language="java" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<html:html>
<head>
<title>
<bean:message key="logon.title"/>
</title>
</head>
<body bgcolor="white">
<html:errors/>
<html:form action="/logon" focus="username">
<table border="0" width="100%">
<tr>
<th class="right">
<bean:message key="prompt.username"/>
</th>
<td class="left">
<html:text property="username" size="16"/>
</td>
</tr>
<tr>
<th class="right">
<bean:message key="prompt.password"/>
</th>
<td class="left">
<html:password property="password" size="16"/>
</td>
</tr>
<tr>
<td class="right">
<html:submit>
<bean:message key="button.submit"/>
</html:submit>
</td>
<td class="right">
<html:reset>
<bean:message key="button.reset"/>
</html:reset>
</td>
</tr>
</table>
</html:form>
</body>
</html:html>
这个例子中,以下的这些元素代表了Struts处理表单的特征:
处理带文件上传的表单也很容易。显然地,当你建立一个带文件上传的表单时,你就是在建立一个至少含有一个输入类型为“file”的表单。建立这样表单的第一步是使用struts-html类库去建立表示页面:
<%@page language="java">
<%@taglib
uri="/WEB-INF/struts-html.tld"
prefix="html">
<html:form action="uploadAction.do" enctype="multipart/form-data">
Please Input Text: <html:text property="myText">
Please Input The File You Wish to Upload: <html:file property="myFile">
<html:submit />
</html:form>
下一步是建立你的ActionForm:
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.upload.FormFile;
public class UploadForm extends ActionForm {
protected String myText;
protected FormFile myFile;
public void setMyText(String text) {
myText = text;
}
public String getMyText() {
return myText;
}
public void setMyFile(FormFile file) {
myFile = file;
}
public FormFile getMyFile() {
return myFile;
}
}
查阅FormFile的Javadocs去了解它在文件上传时处理文件的方法,查阅ActionServlet和ActionMapping的Javadocs去了解你可以指定不同的参数去控制文件怎样被上传。在你的Action类的execute方法中,你可以调用((UploadForm)form).getMyFile()去得到FormFile对象并对它做你想做的事情。
本文地址:http://com.8s8s.com/it/it10076.htm