当前位置:早雪网网络学院编程文档Java → jsp计数器-bean文件

jsp计数器-bean文件

减小字体 增大字体 作者:不详  来源:supcode.com收集整理  发布时间:2005-7-22 18:45:13
import java.io.Serializable;

public class Counter implements Serializable{

// Initialize the bean on creation
int count = 0;

// Parameterless Constructor
public Counter() {

}

// Property Getter
public int getCount() {

// Increment the count property, with every request
count++;

return this.count;
}

// Property Setter
public void setCount(int count) {

this.count = count;
}
}


Tags:jsp,计数器,bean,文件
[数据载入中...] [返回上一页] [打 印]