代码

jiuzhou465 2014-03-09 02:30:16
package com.sram.entity;

public class Simplebean {
private String name;
private int age;
public Simplebean(){
System.out.println("调用无参的构造函数");
}
public Simplebean(int age, String name) {
super();
this.age = age;
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public int getAge() {
return age;
}
public void setAge(int age) {
this.age = age;
}



}
...全文
58 1 打赏 收藏 举报
写回复
1 条回复
切换为时间正序
请发表友善的回复…
发表回复
jiuzhou465 2014-03-09
  • 打赏
  • 举报
回复
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>index.html</title> <meta http-equiv="keywords" content="keyword1,keyword2,keyword3"> <meta http-equiv="description" content="this is my page"> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="css/styles.css"> </head> <body> <form action="LoginJsp.jsp" method="post"> 用户名:<input type="text" name="name"><br> 密 码:<input type="password" name="pwd"><br> 家庭地址:<input type="text" name="address"><br> <input type="submit" value="提交"><br> </form> </body> </html>
相关推荐
发帖
非技术区

2.3w+

社区成员

Java 非技术区
社区管理员
  • 非技术区社区
加入社区
帖子事件
创建了帖子
2014-03-09 02:30
社区公告
暂无公告