carfield12883

博客园 首页 新随笔 联系 订阅 管理

 在JSP中可以使用<%@page%>导入所需要的包,代码如下:

 

<%@ page contentType="text/html" language="java" import="java.util.*" pageEncoding="GBK"%>
<%@ page import="cn.edu.imau.zhw.*" %>
<html>
  <head>
  
    
    <title></title>
    
	

  </head>
  
  <body>
  <%
     SimpleBean simple=new SimpleBean();
     simple.setAge(22);
     simple.setName("xxx");
   %>
   <h3>姓名:<%=simple.getName() %></h3>
   <h3>年龄:<%=simple.getAge() %></h3>
  </body>
</html>


 

posted on 2011-11-17 17:12  carfield12883  阅读(374)  评论(0编辑  收藏  举报