- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在这里不知所措,任何人都可以看出这段代码有什么问题吗?我在这个驱动程序中使用 sqlite: https://bitbucket.org/xerial/sqlite-jdbc/downloads
编辑:修复了我最初的错误,但有一个类似的错误
public void insertTweets(final List<WatchedTweet> tweets) {
try {
final PreparedStatement stmt = connection.prepareStatement(
"insert into tweets(tweet_id, user_id, campaign_id, retweet_count, date) values(?,?,?,?,?)"
);
for(WatchedTweet tweet : tweets) {
stmt.setLong(1, tweet.getID());
stmt.setLong(2, tweet.getParent().getTwitterID());
stmt.setInt(3, tweet.getParent().getCampaignID());
stmt.setInt(4, tweet.getRetweetCount());
stmt.setLong(5, tweet.getAdded().getTime());
stmt.addBatch();
stmt.clearParameters();
}
stmt.executeBatch();
stmt.close();
} catch (SQLException sqe) {
sqe.printStackTrace();
}
}
我在这一行遇到异常:
stmt.setLong(1, tweet.getID());
异常:
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 5
at org.sqlite.core.CorePreparedStatement.batch(CorePreparedStatement.java:110)
at org.sqlite.jdbc3.JDBC3PreparedStatement.setLong(JDBC3PreparedStatement.java:298)
at tweetserver.server.db.TwitterDB.insertTweets(TwitterDB.java:75)
at tweetserver.server.rest.TwitterBot.updateTimelineUntilDate(TwitterBot.java:138)
at tweetserver.server.rest.TwitterBot.process(TwitterBot.java:49)
at tweetserver.server.rest.TwitterBot.<init>(TwitterBot.java:44)
at tweetserver.server.Application.bootstrap(Application.java:25)
at tweetserver.server.Application.main(Application.java:20)
这是我创建表格的方式
"create table if not exists tweets (" +
"id integer PRIMARY KEY AUTOINCREMENT," +
"tweet_id long NOT NULL," +
"user_id long NOT NULL," +
"campaign_id int NOT NULL, " +
"retweet_count int NOT NULL, " +
"date long NOT NULL)"`
最佳答案
根据 http://docs.oracle.com/javase/7/docs/api/java/sql/PreparedStatement.html#setLong(int,%20long) 上的文档
parameterIndex - the first parameter is 1, the second is 2,
关于java - PreparedStatement 上的 ArrayOutOfBoundsException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28893119/
目前我正在尝试用 java 打印一些 pdf。使用的 API 是 Apache PDF Box 2.0 版。转换图像后,我将它们写入磁盘以节省内存。在下一步中,我再次阅读它们并将标题写在图像的头部。之
打开应用程序时,有时会发现与Moshi相关的此异常: Caused by java.lang.ArrayIndexOutOfBoundsException: length=33; index=33
我正在尝试编写一个程序,当您输入数字时,该程序会输出数字的名称。它对于一位数字来说效果很好,但我遇到了障碍。每当我输入大于 10 的数字时,它都会给出 ArrayOutOfBoundsExceptio
import java.util.*; import java.util.ArrayList; class MyHashTable, E> { private ArrayList> bucke
我正在用 java 编写一个分析股票数据的程序。 我几乎让它工作了,但现在它给了我一个 ArrayOutOfBounds 异常。 int n = closingPrices.size();
假设 url = "http://gmail.com"。 我尝试从中创建一个字符串 dnsname = "Top-level com". 现在我们运行以下代码: System.out.println(
在 Python 中,如果您使用越界键/索引对集合结构进行索引,您会得到一记耳光: >>> [1, 2, 3][9] Traceback (most recent call last): File
我创建了一个在 Java 中执行值数组的方法。每当我尝试运行它时,都会遇到 ArrayOutOfBoundsException。我的控制台将错误指向是“if”语句。 for (int i = 1; i
我正在做一个关于基本 2D 塔防游戏的教程,我们基本上是试图用一堆图 block 填充一个窗口,但我在这里遇到了 ArrayOurOfBoundsException,我不明白为什么! map
我比较了 Java 中的 BufferedImage 对象。我从一组图像中获取图像,并将其与同一组中的所有图像进行比较。然而,它会导致这个奇怪的错误,将图像与其自身进行比较,并且对于其他图像来说一切正
我在这里不知所措,任何人都可以看出这段代码有什么问题吗?我在这个驱动程序中使用 sqlite: https://bitbucket.org/xerial/sqlite-jdbc/downloads 编
我收到一个 arrayoutofboundsexception 错误。当我尝试格式化要显示的草稿文本消息时。这只是一个简单的短信应用程序,我正在尝试设置文本大小和颜色。当我评论这两行时,我的应用程序没
public class WeightOnPlanetsV1 { public static double[] calcWeight(double[] gravity, double[]mass)
我在使用 replaceFirst 时得到一个奇怪的 ArrayOutOfBoundsException: "this is an example string".replaceFirst("(^th
已关闭。这个问题是 not reproducible or was caused by typos 。目前不接受答案。 这个问题是由拼写错误或无法再重现的问题引起的。虽然类似的问题可能是 on-top
我是 Java 的新手。我现在才学半年。现在我正在为学校做一个项目,但我遇到了障碍: 我基本上正在制作一个程序来管理您自己的书籍。我有一个类“Books”,它保存书籍对象的数据。然后是“Library
我尝试对以下格式的数据使用过滤后的分类器: 实数,实数,实数,...,标称 其中我有 138 个实值和一个代表该类的名义字符串。我使用 J48 作为基分类器和监督离散化过滤器,如下所示: Filter
我使用的是正确显示的 JList。但是,我无法从列表中删除元素。 JList nameList = new JList(db.getAllNames()); nameList.setVisibleRo
我今天了解了 java 中的 arraycopy() 函数,并且在代码中使用它。但我不断收到 ArrayOutOfBoundsException。我试图找出一个解决方案并在谷歌上搜索解决方案,但我似乎
我们不时看到 Android 的 ART 代码崩溃。我们在没有边界检查的情况下索引到一个 int 数组,然后捕获 Java 的 ArrayIndexOutOfBoundsException 并正确处理
我是一名优秀的程序员,十分优秀!