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.
1 つの JCheckBox がデータベースに挿入されます
String R=chckbxRsidentel.getSelectedObjects().toString(); String A=chckbxAffaire.getSelectedObjects().toString();
どのチェックボックスが選択されているかに応じて、「R」または「A」のいずれかをデータベースに挿入することを想定しています。おそらく、どちらも選択されていない場合は、「 」なども挿入したいでしょう。
あなたはこれを行うことができます:
char check = chckbxRsidentel.isSelected() ? "R" : chckbxAffaire.isSelected() ? "A" : " ";