上一页 1 ··· 6 7 8 9 10
摘要: Jsp:只做显示操作Servlet:调用前端数据,调用后台(逻辑)方法Service:只做逻辑,校验Dao:只做数据库表的增删改查 阅读全文
posted @ 2016-09-07 01:02 惶者 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 翻斗棋关卡选择:游戏规则说明1.任意点击一个地方,则自身和其相邻的格子颜色会发生变化2.xxxxxxxxxxxxxxxxxxxxxxxxxxx3.xxxxxxxxxxxxxxxxxxxxxxxxxxx 阅读全文
posted @ 2016-08-19 23:48 惶者 阅读(231) 评论(0) 推荐(0) 编辑
摘要: Bootstrap 基础 Template首页 Toggle navigation ... 阅读全文
posted @ 2016-08-19 23:42 惶者 阅读(88) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2016-08-19 23:39 惶者 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 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 惶者 阅读(172) 评论(0) 推荐(0) 编辑
摘要: public class JDBCTemplate {private Connection conn = null;private PreparedStatement ps = null;private ResultSet rs = null;// 静态块 ---类加... 阅读全文
posted @ 2016-08-02 23:59 惶者 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 加载驱动 Class.forName("com.mysql.jdbc.Driver");建立连接 Connection conn=DriverManager.getConnection("jdbc:mysql://localhost//3306-----");准备语句... 阅读全文
posted @ 2016-07-31 14:26 惶者 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 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 惶者 阅读(471) 评论(0) 推荐(0) 编辑
上一页 1 ··· 6 7 8 9 10