JDev

Code, javaDecember 13, 2006 5:48 pm

Here are some Java books recommended for beginners:

O’Reilly’s Learning Java

Java: Learning to Program with Robots

Code, java 5:38 pm
Calendar cal = GregorianCalendar.getInstance(); 
SimpleDateFormat df = new SimpleDateFormat("MMM yyyy");
Date currentMonth = new Date();
cal.setTime(currentMonth);
cal.add(Calendar.MONTH, 1);
String nextMonth = df.format(cal.getTime());
 http://www.sitepoint.com/forums/showthread.php?t=434129
I posted more examples at http://www.ekcsoft.com/coding/java.php