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

最初に and に分割lineTitleCommentを割り当てる必要があり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 に答える