最新回答 / 慕粉0947449777
我把你的代码复制到我的ide下发现1 第19-21行有未知字符(不可见),可能是你换行的时候打错了,删除这些字符2 for循环里打印输入的内容为空,因为没写reg.jsp,可在前面加上if判断,改成if(request.getParameterValues("favorite") !=null) { String[] favorites = request.getParameterValues("favorite"); for (int i = 0; i < favorites.leng...
2017-03-08
最新回答 / 賓临城下
首先先加载MySQL的驱动程序,这条语句是固定不变的,需要捕获异常:<...code...>然后获得数据库的连接,返回Connection对象:<...code...>这两步就已经与数据库连接上了,接下来就是创建Statement对象用来操作数据库了:<...code...>操作数据库可使用preparedStatement()方法对SQL语句预编译,预编译后对于批量处理可以提高效率:<...code...>
2017-03-06