📄 my_news_list_lhl.jsp
字号:
<%@ page language="java" pageEncoding="EUC-KR"%>
<%@ page import="java.io.*,java.text.*,java.util.Date,java.util.Vector, java.sql.*, com.entaz.lib.db.*, com.entaz.relay.net.* "%>
<%@ include file="../common_func.jsp"%>
<%@ include file="formatUtil.jsp"%>
<%@ include file="appConstants.jsp"%>
<%@ include file="../imgpath.jsp"%>
<%
// 其捞瘤 备泅 眠啊 函荐
int pagesize = 10; // 茄其捞瘤寸 10俺 免仿拱
// 傈开 函荐肺 急攫.. 其捞瘤 备泅 何盒俊 犁荤侩
int pageNUM=1; // 其捞瘤 锅龋
int pagecount=1 ; // 其捞瘤 肮荐 瘤沥 函荐
int absolutepage=1; // 例措 困摹 其捞瘤 锅龋
int dbcount=0 ; // DB 救俊 臂 肮荐 历厘 函荐
int isNoPage = 0; //茄俺档 绝蠢衬.. 绝栏搁0, 乐栏搁1
String pageurl = null;
Connection con = null;
PreparedStatement pstmt = null;
Statement stmt = null;
ResultSet rs = null;
ResultSet pageset = null;
String mphone= request.getParameter("mphone");
String gphone= request.getParameter("gphone");
mphone = getStrPhone(getLong(mphone));
gphone = getStrPhone(getLong(gphone));
//int phonenum = 0;
//String mphone = "13366103"; //test db fang ke
//String gphone = "9900100081"; //test db zu ren
String usernickname = "No name";
String bgColor = "";
String strNewsKind = ""; //臂 辆幅
int cStringTypeLength = 0;
String strPrintNewsTitle = ""; //臂 力格 (畴免窍绰)
try {
%>
<%@ include file="../getConnection.jsp"%>
<%@ include file="bgColor.jsp"%>
<%
String queryString = "SELECT * FROM GT_NsNews WITH (READUNCOMMITTED) where phonenum=" + getLong(gphone) + " order by regdate desc";
String szCount = "SELECT count(phonenum) countNum FROM(SELECT * FROM GT_NsNews WITH (READUNCOMMITTED) where phonenum=" + getLong(gphone) + ") countNum";
stmt = con.createStatement();
pageset = stmt.executeQuery(szCount);
if(pageset.next()){
dbcount = pageset.getInt("countNum"); // 臂 醚 肮荐
pageset.close();
}
if(dbcount%pagesize == 0)
pagecount = dbcount/(pagesize); // 醚 其捞瘤荐 备窍扁
else
pagecount = dbcount/(pagesize)+1; // 醚 其捞瘤荐 备窍扁
if(request.getParameter("pageNUM")!=null)
{
pageNUM=Integer.parseInt(request.getParameter("pageNUM"));//瘤沥等 其捞瘤 焊咯林扁
absolutepage=(pageNUM-1)*pagesize+1;
}
String sql = "SELECT NICKNAME FROM GT_USER_INFO WITH (READUNCOMMITTED) WHERE PHONENUM = '" + gphone + "'";
pstmt = con.prepareStatement(sql);
rs = pstmt.executeQuery();
if(rs.next())
{
usernickname = rs.getString("NICKNAME");
}
bgColor = mainBgColor;
%>
<html>
<head>
<title>My News List</title>
<link rel="stylesheet" href="../mobile.css" type="text/css"></link>
</head>
<body>
<table width="176" border="0" cellspacing="0" cellpadding="0">
<!-- 鸥捞撇 矫累 -->
<tr>
<td>
<table width="176" border="0" cellspacing="0" cellpadding="0">
<tr height="19">
<td width="8" bgcolor="<%=bgColor%>"></td>
<td bgcolor="<%=bgColor%>"><font color="#ffffff"><%=usernickname%>丛狼弥辟春胶</font></td>
</tr>
</table>
</td>
</tr>
<!-- 鸥捞撇 场 -->
<!-- 咯归 矫累 -->
<tr height="4">
<td></td>
</tr>
<!-- 咯归 场 -->
<!--捞傈/促澜 傅农 冠胶 矫累-->
<%
pageurl=url_path+"/news/my_news_list_lhl.jsp?mphone="+mphone+"&gphone="+gphone ;
String [] szSplit = pagePathTop(pageurl, dbcount, pageNUM, pagecount);
%>
<tr>
<td>
<table width="176" border="0" cellspacing="0" cellpadding="0" bgcolor="<%=pageBgColor %>">
<tr>
<td width="10"></td>
<td width="60" height="16" align="left">
<font color="#676767" size="3">⒏ </font>
<font color="<%=pageFNFontColor %>" size="3">(7)</font>
<%=szSplit[0]%>
<font color="<%=pageFNFontColor %>" size="3"><b>捞傈</b></font>
<%=szSplit[1]%>
</td>
<td></td>
<td width="60" align="right">
<%=szSplit[2]%>
<font color="<%=pageFNFontColor%>" size="3"><b>促澜</b></font>
<%=szSplit[3]%>
<font color="<%=pageFNFontColor%>" size="3">(9)</font>
<font color="#676767" size="3"> ⒑</font>
</td>
<td width="10"></td>
</tr>
</table>
</td>
</tr>
<!--捞傈/促澜 傅农 冠胶 场-->
<!-- 咯归 矫累 -->
<tr height="2">
<td></td>
</tr>
<!-- 咯归 场 -->
<!-- 巩翠 府胶飘 矫累 -->
<tr>
<td>
<table width="176" border="0" cellspacing="0" cellpadding="0" bgcolor="#f5f3e6">
<%
stmt = con.createStatement();
rs = stmt.executeQuery(queryString);
if(!rs.next()) // 蔼捞 绝阑锭
{
isNoPage = 1;
pagesize=0;
}
else // 蔼捞 乐阑锭 //rs.absolute(absolutepage);
{
for(int s=0; s<absolutepage-1; s++)
rs.next();
}
int count = 0 ; //其捞瘤 墨款磐 函荐
int idx = 0;
int kind = 0;
String title = "";
int reCnt = 0;
String regdate = "";
while(count<pagesize)
{
idx = rs.getInt("idx");
kind = rs.getInt("kind");
usernickname = rs.getString("nickname");
title = rs.getString("title");
reCnt = rs.getInt("reCnt");
regdate = rs.getString("regdate");
%>
<!-- 馆汗 2 矫累 -->
<tr height="2">
<td colspan="3"></td>
</tr>
<tr>
<td width="3" ></td>
<td>
<font color="#616667">[<%=getType(kind)%>]
<a href="my_news_view_lhl.jsp?dispatch=hit&idxNsNews=<%=idx%>&gphone=<%=gphone%>&mphone=<%=mphone%>">
<%=getTitle(title,kind)%></a> [<%=reCnt%>]</font><br>
<font color="#616667" size="3">-<%=getTime(regdate)%></font>
</td>
<td width="3" ></td>
</tr>
<tr height="2">
<td colspan="3"></td>
</tr>
<tr height="2">
<td colspan="3" bgcolor="#ffffff"></td>
</tr>
<!-- 馆汗 2 场 -->
<%
count ++;
if(rs.isLast())
{ //盖 付瘤阜 饭内靛 老版快
break;
}
else
{
rs.next();
}
}
rs.close();
stmt.close();
con.close();
%>
</table>
</td>
</tr>
<!-- 巩翠 府胶飘 场 -->
<!--其捞瘤 傅农 矫累-->
<%
String[] szSplit2 = pagePathBottom(pageurl, dbcount, pageNUM, pagecount);
%>
<tr>
<td>
<table width="176" border="0" cellspacing="0" cellpadding="0" bgcolor="<%=pageBgColor %>">
<tr>
<td height="16">
<table width="176" border="0" cellspacing="0" cellpadding="0">
<tr>
<td></td>
<td width="21" align="center"><%=szSplit2[0]%><font color="#676767" size="3"><%=szSplit2[1]%></font><%=szSplit2[2]%></td>
<%
String pageColor = "";
for(int i=1;i<6;i++)
{
if(pageNUM%10 == Integer.parseInt(szSplit2[i*3+1]))
pageColor = pageFontColorY;
else
pageColor = pageFontColorN;
%>
<td width="1" align="center"><font color="<%=pageColor %>" size="3">|</font></td>
<td width="21" align="center"><%=szSplit2[i*3]%><font color="<%=pageColor%>" size="3"><b><%=szSplit2[i*3+1]%></b></font><%=szSplit2[i*3+2]%></td>
<%
}
%>
<td width="21" align="center"><%=szSplit2[18]%><font color="#676767" size="3"><%=szSplit2[19]%></font><%=szSplit2[20]%></td>
<td></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
<!--其捞瘤 傅农 场-->
<!--咯归 矫累-->
<tr>
<td height="6"></td>
</tr>
<!--咯归 场-->
<!-- 滚瓢 矫累 -->
<tr>
<td>
<table width="176" border="0" cellspacing="0" cellpadding="0">
<tr height="16">
<td></td>
<td width="55" bgcolor="<%=bgColor%>" align="center" >
<a href="my_news_register_lhl.jsp?gphone=<%=gphone%>&mphone=<%=mphone%>"><font color="#ffffff">货臂累己</font></a></td>
<td width="2"></td>
<td width="55" bgcolor="<%=bgColor%>" align="center" >
<a href="NewsMain.jsp?gphone=<%=gphone%>&mphone=<%=mphone%>"><font color="#ffffff">倒酒啊扁</font></a></td>
<td></td>
</tr>
</table>
</td>
</tr>
<!-- 滚瓢 场 -->
<!-- 咯归 矫累 -->
<tr height="11">
<td></td>
</tr>
<!-- 咯归 场 -->
<%
String step1=url_path+"/main.jsp?mphone="+mphone+"&gphone="+gphone;//权
String step2=url_path+"/mypage/my_confirm.jsp?mphone="+mphone+"&gphone="+gphone;
String step3=url_path+"/news/NewsMain.jsp?mphone="+mphone+"&gphone="+gphone;
%>
<!--版肺钎矫 矫累-->
<tr>
<td>
<table width="176" border="0" cellspacing="0" cellpadding="0">
<tr height="15">
<td width="8" bgcolor="#BBC7C8"></td>
<td bgcolor="#DAE6E8">
<a href="<%=step1%>">权</a>><a href="<%=step2%>"><%= usernickname %>丛狼迄乔</a>><a href="<%=step3%>">春胶</a>>弥辟春胶
</td>
<td width="8" bgcolor="#BBC7C8"></td>
</tr>
</table>
</td>
</tr>
<!--版肺钎矫 场-->
</table>
<%@ include file="../newbottom.jsp"%>
</body>
</html>
<%} catch(Exception e) {
e.printStackTrace();
} %>
<%!
public String getType(int input)
{
if(input == 1)
return new String("荤扒/荤绊");
if(input == 2)
return new String("瘤开");
if(input == 3)
return new String("楷抗/胶器明");
else
return new String("扁鸥");
}
public String getTime(String input)
{
return input.substring(2,4)+"/"+input.substring(5,7)+"/"+input.substring(8,10)+" "+input.substring(11,16);
}
public String getTitle(String input,int type)
{
String strType = getType(type);
int typeLen = strType.length();
StringBuffer sb = new StringBuffer();
int length = input.length();
if(length > 20 && length <= 40)
return input.substring(0,19-typeLen) + "<br>" + input.substring(20-typeLen,length);
if(length > 40 && length <= 60)
return input.substring(0,19-typeLen) + "<br>" + input.substring(20-typeLen,39-typeLen) + "<br>" + input.substring(39-typeLen+1,length);
return input;
}
%>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -