日期:2014-05-20 浏览次数:20699 次
public void get() { Scanner s = new Scanner(System.in); String ymd = s.nextLine(); year = Integer.valueOf(ymd.substring(0, 4)); month = Integer.valueOf(ymd.substring(4, 6)); day = Integer.valueOf(ymd.substring(6, 8)); }