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

📄 loginform.java

📁 USB设计的一些源码!适合与USB开发的同学!还是蛮不错的!我用过一些!
💻 JAVA
字号:
package com.wiley;import javax.servlet.http.HttpServletRequest;import org.apache.struts.action.ActionForm;import org.apache.struts.action.ActionMapping;import org.apache.struts.action.ActionErrors;import org.apache.struts.action.ActionError;public class LoginForm extends ActionForm {  private String password = null;  private String username = null;	// Password Accessors  public String getPassword() {		return (this.password);	}  public void setPassword(String password) {		this.password = password;	}	// Username Accessors  public String getUsername() {		return (this.username);	}  public void setUsername(String username) {		this.username = username;	}  // This method is called with every request. It resets the Form  // attribute prior to setting the values in the new request.  public void reset(ActionMapping mapping, HttpServletRequest request) {		this.password = null;		this.username = null;	}  public ActionErrors validate(ActionMapping mapping,    HttpServletRequest request) {    ActionErrors errors = new ActionErrors();    if ( (username == null ) || (username.length() == 0) ) {      errors.add("username", new ActionError("errors.username.required"));    }    if ( (password == null ) || (password.length() == 0) ) {      errors.add("password", new ActionError("errors.password.required"));    }    return errors;  }}

⌨️ 快捷键说明

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