摘要:
Jsp:只做显示操作Servlet:调用前端数据,调用后台(逻辑)方法Service:只做逻辑,校验Dao:只做数据库表的增删改查 阅读全文
摘要:
翻斗棋关卡选择:游戏规则说明1.任意点击一个地方,则自身和其相邻的格子颜色会发生变化2.xxxxxxxxxxxxxxxxxxxxxxxxxxx3.xxxxxxxxxxxxxxxxxxxxxxxxxxx 阅读全文
摘要:
Bootstrap 基础 Template首页 Toggle navigation ... 阅读全文
摘要:
阅读全文
摘要:
public int doAdd(Reply reply) {String sql = "insert into reply values(null,?,?,?,?,?,?)";return this.getJdbc().executeUpdate(sql,new S... 阅读全文
摘要:
public class JDBCTemplate {private Connection conn = null;private PreparedStatement ps = null;private ResultSet rs = null;// 静态块 ---类加... 阅读全文
摘要:
加载驱动 Class.forName("com.mysql.jdbc.Driver");建立连接 Connection conn=DriverManager.getConnection("jdbc:mysql://localhost//3306-----");准备语句... 阅读全文
摘要:
public class Matrix {/*** 打印指定的矩阵* @param c*/public static void printMatrix(int[][] c){//打印矩阵 for(int i=0;i<c.length;i++){for(int j=0;... 阅读全文