⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 userstatus.jsp

📁 一个使用jdbc存储和调用大对象(比如图片等)的例子
💻 JSP
字号:
<html><head><title>status</title><meta http-equiv="Content-Type" content="text/html; charset=gb2312"><META http-equiv="refresh" content="10"><link rel="stylesheet" href="../etc/index.css"></head><body bgcolor="#FF9900" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0"><%@ page language="java" import="java.sql.*" %><jsp:useBean id="OPDB" scope="page" class="database.OPDB" /><%OPDB.connection();Connection conn =OPDB.getConn();String userName = (String) session.getValue("username");if (userName == null) {		return;}String sql = null;int i = userName.indexOf(OPDB.AsciiToChineseString("[会员]"));if (i != -1) {	userName = userName.substring(0,i);		sql = "select userlevel,experlence from t_bbs_user where username = '" + userName + "' and usertype = 'Y'";}else {	sql = "select userlevel,experlence from t_bbs_user where username = '" + userName + "' and usertype = 'N'";}ResultSet rs = OPDB.select(conn,sql);int experience = 0;String userType = "过客";if (rs.next()) {	experience = rs.getInt("experience");	userType = rs.getString("userType");}rs.close();%><table width="260" border="0" cellspacing="0" cellpadding="0" align="center" height="91" bgcolor="#FF9900"><tr> <td width="9" rowspan="3"><img src="../images/chat_left.gif" width="9" height="91"></td><td colspan="3" height="10"><img src="../images/chat_top.gif" width="62" height="10"></td><td width="9" rowspan="3"><img src="../images/chat_right.gif" width="9" height="91"></td></tr><tr><td colspan="3" height="71" bgcolor="#F9E538" valign="middle" align="center"> <table width="91%" border="0" cellspacing="0" cellpadding="0"><tr align="center" valign="middle"> <td colspan="3">功力值: <font color="#FF3300"><%= experience %></font> 分 (<font color="#FF3300"><%= userType %></font>)</td></tr><tr align="center" valign="middle"> <td width="35%"><a href="../bbs/index1.html">生活茶馆</a></td><td width="33%"><a href="../bbs/index2.html">爱成网事 </a></td><td width="32%"><a href="../bbs/index3.html">我为e狂 </a></td></tr><tr align="center" valign="middle"> <td width="35%"><a href="../bbs/index4.html">光 与 影</a></td><td width="33%"><a href="../bbs/index5.html">云游四海 </a></td><td width="32%"><a href="../bbs/index6.html">飘飘娱仙 </a></td></tr><tr align="center" valign="middle"> <td width="35%"><a href="../bbs/index7.html">城市故事</a></td><td width="33%"><a href="../bbs/index8.html">健身美体 </a></td><td width="32%"><a href="">会员注册 </a></td></tr></table></td></tr><tr><td colspan="3" height="10" bgcolor="#E86A1B"><img src="../images/spacer.gif" width="1" height="10"></td></tr></table></body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -