次の for loop ( for (int curr = 0; curr<working.size(); curr++){
) ループは、n 回実行する必要があります。n は、動作中と呼ばれる ArrayList のサイズです。ただし、ArrayList に複数の要素があることを確認した後でも、ループは 1 回しか実行されません。どうしてこれなの?
String sql = "SELECT time FROM `tutors`.`appointments`"
+ "WHERE tutorID = ? AND date = ?";
try{
for (int curr = 0; curr<working.size(); curr++){
System.out.println("working size: " + working.size());
System.out.println("running for the time: " + curr);
PreparedStatement ps = conn.prepareStatement(sql);
ps.setInt(1, working.get(curr).getTutorID());
ps.setDate(2, toReturn);
ResultSet rs = ps.executeQuery();
while(rs.next()){
Time t = rs.getTime("time");
System.out.println("RS HAS : " + t);
long beforeLong = t.getTime()-900000;
long afterLong = t.getTime()+900000;
Time beforeTime = new Time(beforeLong);
Time afterTime = new Time(afterLong);
if (!time.before(beforeTime) && !time.after(afterTime)){
System.out.println("removed" + working.get(curr).getName());
working.remove(curr);
}
}
}
} catch(SQLException e) {e.printStackTrace();}
PS - try/catch を for ループの内側に配置しても外側に配置しても、同じ問題があります。