程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> JSP簡單練習-EL表達式操作JavaBean

JSP簡單練習-EL表達式操作JavaBean

編輯:關於JSP

JSP簡單練習-EL表達式操作JavaBean


/*
 * javaBean代碼
 */
package bean;

public class Box {
	double length;
	double width;
	double height;
	public Box()
	{
		length=0;
		width=0;
		height=0;
	}
	public double getLength() {
		return length;
	}
	public void setLength(double length) {
		this.length = length;
	}
	public double getWidth() {
		return width;
	}
	public void setWidth(double width) {
		this.width = width;
	}
	public double getHeight() {
		return height;
	}
	public void setHeight(double height) {
		this.height = height;
	}
	
	public double getArea()
	{
		return length*width*2+length*height*2+width*height*2;
	}
	
	public double getVolum()
	{
		return length*width*height;
	}
}

<%@ page language="java" contentType="text/html; charset=gb2312" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>


用EL使用JavaBean


	<% 
		bean.Box box=new bean.Box();
		box.setLength(40);
		box.setWidth(20);
		box.setHeight(30);
		request.setAttribute("box", box);
	%>
	盒子的表面積為:${box.area }
盒子的容積為:${box[volum] }


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved