。。。。。。。。。。。。。。。。。。。。。。。。。。
资料下载模块吧
换个浏览器试试,或者把播放器换成HTML5
百度啊,百度那么多
请说清楚一点
我理解的是sevlet是用来跳转页面和传递数据的,在项目开发中相当于控制层,也就是SSH框架中的struts和SSM框架中的SpringMVC的作用,可以不使用servlet,但是要掌握,因为servlet是基础--个人观点,诸多不足,仅供参考
是的,服务器更新,一个小时后刷新试试
加载驱动2创建连接
public static Connection getConn() throws SQLException,
ClassNotFoundException {
Class.forName("com.mysql.jdbc.Driver");//1
return DriverManager
.getConnection(
"jdbc:mysql://localhost:3306/bookstore?useUnicode=true&characterEncoding=utf-8",
"root", "password");//2
}
3执行语句
String sql = "select authorise from user where username=? and password = ?";
pst=con.prepareStatement(sql);
pst.setString(1, name);
pst.setString(2, password);
rs = pst.executeQuery();//查询用这条
String sql="update book set bookname=?,price=? where id=?";
pst=con.prepareStatement(sql);
pst.setString(1, book.getBookname());
pst.setFloat(2, book.getPrice());
pst.setInt(3,book.getId());
count=pst.executeUpdate();//增删改用这条
4得到结果
while(rs.next()!=null){}
5关闭连接
if (rs != null) {
rs.close();
}
if (pst != null) {
pst.close();
}
if (con != null) {
con.close();
}
当然能了
楼上回答的是一部分,其实java web开发的本质就是将运行程序放在服务器上,我们所看到的都是前台的展示页面,是基于b/s架构的题主只需要按照这个计划学习就可以了。