Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次の変数があります。
ArrayList<String> NameSet = new ArrayList<String>();
add次のようにメソッドを使用して、ループ内のアイテムで埋めました。
add
NameSet.add(Body.item(t).getAttributes().getNamedItem("name").getNodeValue());
MySQL データベースのロング テキスト データ型にリストを挿入するにはどうすればよいですか?
配列リストを mysql の行に直接挿入する方法はありません。しかし、名前を1行に挿入したい場合は、それらをarraylistに入れる代わりに、それらを文字列変数に保存し、「文字」で区切り、挿入クエリを使用してDbに保存することができます.
それ以外の場合は、この配列リストを文字列に変換する別のメソッドを作成してから、上記を実行する必要があります