手机版

WEB开发课程设计-新闻发布系统(7)

发布时间:2021-06-06   来源:未知    
字号:

新闻发布系统

}

} }

} catch (SQLException e) { e.printStackTrace(); } }

3.2 新闻浏览

功能:通过点击新闻查看新闻的详细内容 实现:点击新闻后根据新闻ID查询出新闻详细内容,封装至新闻的JavaBean中,传至JSP页面,取出数据显示 public News getNewsDetail(String news_id){ News news = new News(); try {

con = DBConnector.getConnection();

ps = con.prepareStatement("select * from news where news_id=?");

ps.setString(1, news_id); rs = ps.executeQuery(); while(rs.next()){

news.setNews_id(rs.getInt(1));

news.setNews_type(rs.getString(2)); news.setNews_keys(rs.getString(3)); news.setNews_author(rs.getString(4)); news.setNews_origin(rs.getString(5)); news.setNews_content(rs.getString(6)); news.setNews_title(rs.getString(7)); news.setNews_read(rs.getShort(8)); news.setNews_time(rs.getString(9)); }

ps = con.prepareStatement("update news set news_read=? where news_id=?");

ps.setInt(1, news.getNews_read()+1);//将阅读次数加1 ps.setString(2, news_id); ps.executeUpdate(); } catch (SQLException e) { e.printStackTrace(); }finally{

DBConnector.free(rs, ps, con); }

return news; }

3.3 新闻管理

WEB开发课程设计-新闻发布系统(7).doc 将本文的Word文档下载到电脑,方便复制、编辑、收藏和打印
×
二维码
× 游客快捷下载通道(下载后可以自由复制和排版)
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
VIP包月下载
特价:29 元/月 原价:99元
低至 0.3 元/份 每月下载150
全站内容免费自由复制
注:下载文档有可能出现无法下载或内容有问题,请联系客服协助您处理。
× 常见问题(客服时间:周一到周五 9:30-18:00)