文章列表
<%@ page contentType="text/html;charset=GB2312"%>
<%@ page import="java.sql.*"%>
<html>
<title>分页显示(jsp版)</title>
<body>
<%! int pageSize = 5;//每页显示的记录数
int pageCount = 0;//总页数
%>
<%
Connection con;
String DatabaseDriver = & ...
- 2009-05-22 19:13
- 浏览 1111
- 评论(0)
TpageList类
package jfis.util;
import java.util.List;
publicclass TPageList {
private TPages page=null; //分页对象
private List objectList=null; //对象集合
private String pageStr=""; //分页字符串
public List getObjectList() {
re ...
- 2009-05-22 19:08
- 浏览 1725
- 评论(0)
这里以WebLogic8.1为例。
weblogic官方下载地址:http://download2.bea.com/pub/platform/81/platform815_zh_CN_win32.exe
启动Eclipse,选择“窗口(Window)”-“首选项(Preference...)”,打开首选项对话框。展开MyEclipse下的Application Servers结点,点击WebLogic 8 ...
- 2009-05-18 16:57
- 浏览 993
- 评论(0)
1 EMF,GEF - Graphical Editor Framework,UML2,VE - Visual Editor都在这里下载
http://www.eclipse.org/downloads/index.php
2 lomboz J2EE插件,开发JSP,EJB
http://forge.objectweb.org/projects/lomboz
3 MyEclipse J2EE开发插件,支持SERVLET/JSP/EJB/数据库操纵等
http://www.myeclipseide.com
4 Properties Editor 编辑java的 ...
- 2009-05-18 10:55
- 浏览 1007
- 评论(0)