错误总结
BaronZ
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
The processing instruction target matching "[xX][mM][lL]" is not allowed.
The processing instruction target matching "[xX][mM][lL]" is not allowed.出现原因:前面不要有任何其他字符,如空格、回车、换行这些否则就会出现上面的异常。原创 2012-04-24 21:29:46 · 830 阅读 · 0 评论 -
java.sql.SQLException: Before start of result set
解决方法:使用rs.getString();前一定要加上rs.next();原因:ResultSet对象代表SQL语句执行的结果集,维护指向其当前数据行的光标。每调用一次next()方法,光标向下移动一行。最初它位于第一行之前,因此第一次调用next()应把光标置于第一行上,使它成为当前行。随着每次调用next()将导致光标向下移动一行。在ResultSe对象及其t父辈Statement对象关转载 2012-05-14 19:43:32 · 1028 阅读 · 0 评论 -
Pom.xml文件中最上方有错,提示Missing artifact com.sun:tools:jar:1.5.0:system
问题Pom.xml文件中最上方有错,提示Missing artifact com.sun:tools:jar:1.5.0:system解决:在pom.xml文件里面加下面内容即可 org.apache.struts struts2-core 2.2.1原创 2013-03-12 10:13:02 · 1552 阅读 · 0 评论
分享