得到的時(shí)間是“Thu Jun 06 1985 00:00:00 GMT+0800 (中國標(biāo)準(zhǔn)時(shí)間)” 這樣的字符串 +1 ------Solutions------ “Thu Jun 06 1985 00:00:00 GMT+0800 (中國標(biāo)準(zhǔn)時(shí)間)”已經(jīng)是字符串了,很難了,除非自己解析。 正確的做法應(yīng)該是拿到時(shí)間對象,再用SimpleDateFormat ------Solutions------ 該回復(fù)于2012-02-22 11:42:53被版主刪除 ------Solutions------ SimpleDateFormat format=new SimpleDateFormat("yyyy-MM-dd"); format.format("這是是日期"); 出來的就是你想要的格式了。 ------Solutions------ new SimpleDateFormat("EEE MMM dd yyyy HH:mm:ss' GMT'Z' (中國標(biāo)準(zhǔn)時(shí)間)'",Locale.ENGLISH); ------Solutions------ 你看人家的需求了嗎? 別誤導(dǎo)人好嗎? ------Solutions------ 該回復(fù)于2012-02-22 13:02:30被版主刪除 ------Solutions------ csdn整天大姨媽 真2 ------Solutions------ import java.text.SimpleDateFormat; import java.util.Date; public class Test { /** * @param args */ public static void main(String[] args) { SimpleDateFormat formart = new SimpleDateFormat("yyyy-MM-dd"); Date date = new Date("Thu Jun 06 1985 00:00:00 GMT+0800"); System.out.println(formart.format(date)); } } 結(jié)果:1985-06-06 ------Solutions------ SimpleDateFormat formart = new SimpleDateFormat("yyyy-MM-dd"); Date date = new Date("Thu Jun 06 1985 00:00:00 GMT+0800"); System.out.println(formart.format(date)); ------Solutions------
------Solutions------ String str="Thu Jun 06 1985 00:00:00 GMT+0800 (中國標(biāo)準(zhǔn)時(shí)間)"; |
|