·《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 怎么回事 多谢啊!!
分享到:
精彩评论 1
东北虎
学分:0 LV1
2011-04-26
沙发
您好,请将程序中的
if (currPage != null && !currPage.isEmpty()) 
 修改为
if (currPage != null && !currPage.equals("")) 
首页上一页 1 下一页尾页 1 条记录 1/1页
手机同步功能介绍
友情提示:以下图书配套资源能够实现手机同步功能
明日微信公众号
明日之星 明日之星编程特训营
客服热线(每日9:00-17:00)
400 675 1066
mingrisoft@mingrisoft.com
吉林省明日科技有限公司Copyright ©2007-2022,mingrisoft.com, All Rights Reserved长春市北湖科技开发区盛北大街3333号长春北湖科技园项目一期A10号楼四、五层
吉ICP备10002740号-2吉公网安备22010202000132经营性网站备案信息 营业执照