java.util.ConcurrentModificationException
ボタンのクリック時に次のコードが数回実行されたときの取得
for(Iterator <PrintWriter> it=TABhs.iterator();it.hasNext();)
{
PrintWriter ot=it.next();
ot.println("tableupdate#"+tables+"#"+kotno+"#processing");
ot.flush();
JOptionPane.showMessageDialog(rootPane, "<html><body>Table Kot Status Changed to <b>Processing</b></body></html>");
}
誰かがこれに対するいくつかの解決策を教えてもらえますか
ここで TABhs は PrintWriter ジェネリックを持つ HashSet です
HashSet <PrintWriter> TABhs=new HashSet<PrintWriter>();
ボタンクリックアクションを以下に示します
private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
String stat=status_combo.getSelectedItem().toString();
String tables=tableno_combo.getSelectedItem().toString();
String kotno=kotno_combo.getSelectedItem().toString();
if(stat.equals("Processing"))
{
try {
String quer="UPDATE table_orders SET status='"+stat.toLowerCase()+"' WHERE tableno='"+tables+"' AND kotno='"+kotno+"'";
int restatus=dbGetDet.insertDetails(quer);
if(restatus>0){
filtercomboBox();
fillTable();
for(Iterator <PrintWriter> it=TABhs.iterator();it.hasNext();)
{
PrintWriter ot=it.next();
ot.println("tableupdate#"+tables+"#"+kotno+"#processing");
ot.flush();
JOptionPane.showMessageDialog(rootPane, "<html><body>Table Kot Status Changed to <b>Processing</b></body></html>");
}
System.out.println("TABhs--------------------->"+TABhs.size());
}
} catch (Exception ex) {
Logger.getLogger(MYClientclass.class.getName()).log(Level.SEVERE, null, ex);
}
}
}