package com.java.model;

public class Student {

private String name;
private int age;

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;
}
}

 

<%@ page language="java" contentType="text/html; charset=utf-8"
pageEncoding="utf-8"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Insert title here</title>
</head>
<body>
<jsp:useBean );
student.setAge(12);
%>
<h1>姓名:<%=student.getName() %></h1>
<h1>年龄:<%=student.getAge() %></h1>
</body>
</html>

相关文章:

  • 2022-12-23
  • 2021-06-11
  • 2021-10-25
  • 2021-05-31
  • 2022-12-23
  • 2021-06-18
  • 2021-07-19
猜你喜欢
  • 2022-12-23
  • 2021-09-24
  • 2021-07-14
  • 2021-05-12
  • 2021-12-17
  • 2022-12-23
  • 2021-12-03
相关资源
相似解决方案