Tag: calendar

如何从Java中的Date对象中减去X日?

我想做一些事情: Date date=new Date(); //current date date=date-300;//substact 300 days from current date and I want to use this "date" 怎么做?

将string转换为Java中的日历对象

我是Java新手,通常使用PHP。 我想转换这个string: Mon Mar 14 16:02:37 GMT 2011 到一个日历对象,以便我可以轻松地拉这样的年份和月份: String yearAndMonth = cal.get(Calendar.YEAR)+cal.get(Calendar.MONTH); 手动parsing是不是一个好主意? 使用子串方法? 任何build议将有助于感谢!