0

这是我试图存储在数据库中的文件。我想存储标题和评论。我确实得到了它,但它只存储第一行。请帮忙,对数据库不太好。

title : The Descent Part 2 comment : badbaz83 : No it wasn't as good as the first one, but a hell of a lot better than I first feared. Worth a watch, but don't expect it to stand up to the first film.

title : Supernatural comment : MissAyla : I loved this episode. :) I'm thoroughly enjoying the new style, just like the original episodes.

title : Soccer Mom comment : chantellel93 : it's only 10 min so if u smoke 1 its worth the laugh 2/5. xx
4

1 回答 1

1

您首先需要拆分lineTitle分配Comment一个id. 试试这个(注意区分大小写):

String s = line.toString();
Title = s.substring(8, s.indexOf("comment :")).trim();
Comment = s.substring(s.indexOf("comment :") + 10, s.length()).trim();

然后让我们知道你要去哪里。

我假设您正在尝试执行此数据库插入(SQLFiddle)。要自动分配一个 id,您可以将 id 设置为您的 auto_increment 主键(根据我的示例)。然后您可以使用executeUpdate(String sql, int autoGeneratedKeys)

当您提供问题的更多详细信息时,我会尝试更新我的答案。

于 2012-06-26T01:35:52.707 回答