我需要从“2012-07-15 17:00 GMT”这样的字符串中删除“GMT”。尝试使用此代码,但 testDate 返回 null。任何人都可以帮忙吗?
谢谢
String date = "2012-07-15 17:00 GMT";
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm");
Date testDate = null;
try {
testDate = sdf.parse(date);
}catch(Exception ex){
ex.printStackTrace();
}