会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
惶者
博客园
首页
新随笔
联系
管理
订阅
上一页
1
···
6
7
8
9
10
2016年9月7日
页面处理功能--分层思想
摘要: Jsp:只做显示操作Servlet:调用前端数据,调用后台(逻辑)方法Service:只做逻辑,校验Dao:只做数据库表的增删改查
阅读全文
posted @ 2016-09-07 01:02 惶者
阅读(156)
评论(0)
推荐(0)
2016年8月19日
前端小游戏自娱--黑白配
摘要: 翻斗棋关卡选择:游戏规则说明1.任意点击一个地方,则自身和其相邻的格子颜色会发生变化2.xxxxxxxxxxxxxxxxxxxxxxxxxxx3.xxxxxxxxxxxxxxxxxxxxxxxxxxx
阅读全文
posted @ 2016-08-19 23:48 惶者
阅读(243)
评论(0)
推荐(0)
bootstrap小试牛刀
摘要: Bootstrap 基础 Template首页 Toggle navigation ...
阅读全文
posted @ 2016-08-19 23:42 惶者
阅读(101)
评论(0)
推荐(0)
发现了一个好东西——bootstrap
摘要:
阅读全文
posted @ 2016-08-19 23:39 惶者
阅读(100)
评论(0)
推荐(0)
2016年8月4日
增、删、改、查
摘要: public int doAdd(Reply reply) {String sql = "insert into reply values(null,?,?,?,?,?,?)";return this.getJdbc().executeUpdate(sql,new S...
阅读全文
posted @ 2016-08-04 01:53 惶者
阅读(177)
评论(0)
推荐(0)
2016年8月2日
数据库预使用模板——JDBC
摘要: public class JDBCTemplate {private Connection conn = null;private PreparedStatement ps = null;private ResultSet rs = null;// 静态块 ---类加...
阅读全文
posted @ 2016-08-02 23:59 惶者
阅读(121)
评论(0)
推荐(0)
2016年7月31日
JDBC六部曲
摘要: 加载驱动 Class.forName("com.mysql.jdbc.Driver");建立连接 Connection conn=DriverManager.getConnection("jdbc:mysql://localhost//3306-----");准备语句...
阅读全文
posted @ 2016-07-31 14:26 惶者
阅读(243)
评论(0)
推荐(0)
2016年5月15日
二维数组矩阵常用实现方法
摘要: public class Matrix {/*** 打印指定的矩阵* @param c*/public static void printMatrix(int[][] c){//打印矩阵 for(int i=0;i<c.length;i++){for(int j=0;...
阅读全文
posted @ 2016-05-15 01:10 惶者
阅读(485)
评论(0)
推荐(0)
上一页
1
···
6
7
8
9
10
公告