⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 helloform.java

📁 MyEclipse开发Struts的完美解决(pdf+源码) 这可是很好的struts开发的材料哦
💻 JAVA
字号:
package hello;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;import org.apache.struts.action.ActionMessage;public final class HelloForm extends ActionForm { private String userName=null;  public String getUserName() {     return this.userName; }  public void setUserName(String userName) {     this.userName=userName; }  public ActionErrors validate(     ActionMapping mapping,     HttpServletRequest request) {          ActionErrors errors=new ActionErrors();     if((userName==null)||(userName.length()<1))         errors.add("username",new ActionMessage("hello.no.username.error"));     return errors; } public void reset(ActionMapping mapping, HttpServletRequest request) {     this.userName=null; }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -