Here you can find the source of nextMonth(String s)
public static String nextMonth(String s)
//package com.java2s; //License from project: Apache License public class Main { public static String nextMonth(String s) { if (s.length() != 7) return s; else {/*from w w w . j a v a2s .co m*/ String ss[] = s.split("-"); String res;// = ss[0]+"-"; int i = Integer.parseInt(ss[0]); i++; if (i < 10) res = "0" + i; else res = i + ""; res += "-" + ss[1]; return res; } } }