I want to get the day of the week from a Java Date
object when I have a Date
array in String with me.
SimpleDateFormat sourceDateformat = new SimpleDateFormat("yyyy-MM-dd"); public String[] temp_date; public Int[] day = new Int[5]; Date[] d1= new Date[5]; Calendar[] cal= new Calendar[5] try { d1[i]= sourceDateformat.parse(temp_date[i].toString()); cal[i].setTime(d1[i]); // its not compiling this line..showing error on this line day[i]= cal[i].get(Calendar.DAY_OF_WEEK); } catch (ParseException e) { e.printStackTrace(); }
Does anyone know the answer to this question?
source share