首页上一页 1 下一页尾页 1 条记录 1/1页
·《Java web 开发实战宝典》中25章 总提示出现the method isEmpty() undefinded for the type String 怎么回事
发表在JavaWeb图书答疑
2011-04-25
是否精华
是
否
版块置顶:
是
否
package com.lyq.struts.action;
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.actions.DispatchAction;
import org.apache.struts.util.MessageResources;
import com.lyq.dao.SupperDao;
/**
* 用于继承,处理用户是否登录及分页
*
* @author Li Yong Qiang
*/
public class BaseAction extends DispatchAction {
protected int recPerPage = 3; // 分页中每页的记录数
protected Locale locale = null; // 本地语言信息
protected MessageResources message = null;// 消息资源
@Override
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
// 获取Locale信息
this.locale = this.getLocale(request);
// 获取消息资源对象
this.message = this.getResources(request);
// 如果用户没有登录,跳转到登录页面
if (request.getSession().getAttribute("user") == null) {
return mapping.findForward("login");
}
return super.execute(mapping, form, request, response);
}
/**
* 分页
* @param hql hql语句(不包含select,从from子句开始)
* @param recPerPage 每页的记录数
* @param currPage 当前页码
* @param action 请求提交的action地址
* @param where 条件数组
* @return Map集合(装载结果集对象及分页条)
*/
public Map getPage(String hql, int recPerPage, String currPage,
String action, Object[] where) {
// 实例化一个Map对象
Map map = new HashMap();
// 分页条
StringBuffer pagingBar = new StringBuffer();
List list = null; // 结果集
int iCurrPage = 1; // 当前页码
// 如果传递了页码则对当前页码赋值
if (currPage != null && !currPage.isEmpty()) {
iCurrPage = Integer.parseInt(currPage);
}
中的if (currPage != null && !currPage.isEmpty()) 总提示出现the method isEmpty() undefinded for the type String 怎么回事 多谢啊!!
import java.util.HashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.actions.DispatchAction;
import org.apache.struts.util.MessageResources;
import com.lyq.dao.SupperDao;
/**
* 用于继承,处理用户是否登录及分页
*
* @author Li Yong Qiang
*/
public class BaseAction extends DispatchAction {
protected int recPerPage = 3; // 分页中每页的记录数
protected Locale locale = null; // 本地语言信息
protected MessageResources message = null;// 消息资源
@Override
public ActionForward execute(ActionMapping mapping, ActionForm form,
HttpServletRequest request, HttpServletResponse response)
throws Exception {
// 获取Locale信息
this.locale = this.getLocale(request);
// 获取消息资源对象
this.message = this.getResources(request);
// 如果用户没有登录,跳转到登录页面
if (request.getSession().getAttribute("user") == null) {
return mapping.findForward("login");
}
return super.execute(mapping, form, request, response);
}
/**
* 分页
* @param hql hql语句(不包含select,从from子句开始)
* @param recPerPage 每页的记录数
* @param currPage 当前页码
* @param action 请求提交的action地址
* @param where 条件数组
* @return Map集合(装载结果集对象及分页条)
*/
public Map getPage(String hql, int recPerPage, String currPage,
String action, Object[] where) {
// 实例化一个Map对象
Map map = new HashMap();
// 分页条
StringBuffer pagingBar = new StringBuffer();
List list = null; // 结果集
int iCurrPage = 1; // 当前页码
// 如果传递了页码则对当前页码赋值
if (currPage != null && !currPage.isEmpty()) {
iCurrPage = Integer.parseInt(currPage);
}
中的if (currPage != null && !currPage.isEmpty()) 总提示出现the method isEmpty() undefinded for the type String 怎么回事 多谢啊!!