avatar
帮忙看看jsp里的分页# Programming - 葵花宝典
i*c
1
跪求分页实现,如何把太多的页码也分为如此格式:previous|1|2|...|10|next?
long cPage;
cPage = (hits.getTotal() / 10) + 1;
if ((cPage * 10) + 1 >= hits.getTotal())
{
cPage++;
}
if(cPage>100)
{cPage=100;}
int p;
for(p = 1; p < cPage ; p++)
{
out.println("queryLang + " &start="+ (p-1) * 10 + " &hitsPerPage=" + hitsPerPage + " &
hitsPerSite=" + 0 + "&clustering=>"+ p +" | ");
}
给包子50
avatar
g*g
2
jsp不是干这个的,还是先学会用web framework,把逻辑放入
servlet里先。

【在 i***c 的大作中提到】
: 跪求分页实现,如何把太多的页码也分为如此格式:previous|1|2|...|10|next?
: long cPage;
: cPage = (hits.getTotal() / 10) + 1;
: if ((cPage * 10) + 1 >= hits.getTotal())
: {
: cPage++;
: }
: if(cPage>100)
: {cPage=100;}
: int p;

avatar
i*c
3
包子150
avatar
i*c
5
sorry,应该没有if这两行的,现在到这一步,要到google的分页一样
long cPage;
cPage = (hits.getTotal() / 10) + 1;
if ((cPage * 10) + 1 >= hits.getTotal())
{
cPage++;
}
int p;
for(p = 1; p < cPage ; p++)
{
out.println("queryLang + " &start="+ (p-1) * 10 + " &hitsPerPage=" + hitsPerPage + " &
hitsPerSite=" + 0 + "&clustering=>"+ p +" | ");
}
avatar
m*t
6
If you have to use jsp only (which isn't a good idea as goodbug pointed out)
, checkout the pagination support in displaytags.
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。