我正在尝试格式化这些日期
2011年8月,8月24,2011
我现在用它来解析它们。
//set the pattern here to look like the pattern you are expecting in your 'Date' variable
SimpleDateFormat sdf = new SimpleDateFormat("MMMM dd,yyyy");
//Get the release date
releaseDate = postIt.next().text();
Date realDate = null;
try {
realDate = sdf.parse(releaseDate);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
int i = 0;
String gameDate = realDate.toString();
我的调试中出现以下错误。
08-26 22:02:44.571: WARN/System.err(29218): java.text.ParseException: Unparseable date: "August 2011" (at offset 11)
08-26 22:02:44.571: WARN/System.err(29218): at java.text.DateFormat.parse(DateFormat.java:626)
我如何将其设置为读取两种格式的位置?
编辑:
这就是它现在解析它的方式......
08-27 00:10:48.951: VERBOSE/Dates(30449): August 2011
如果2011年8月成立 到
08-27 00:10:48.951: ERROR/FormattedDATE(30449): Mon Aug 01 00:00:00 EDT 2011
他们都解析到同一个日期。
答案 0 :(得分:2)
我认为你们每个人都需要一个格式字符串。
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;
public class DateFormatDriver {
public static void main( String[] args ) throws Exception {
SimpleDateFormat dayMonthYearFormatter = new SimpleDateFormat("MMMM dd,yyyy");
SimpleDateFormat monthYearFormatter = new SimpleDateFormat("MMMM yyyy");
//String date1 = "August 11,2005";
String date1 = "August 2005";
Date realDate = null;
try {
realDate = dayMonthYearFormatter.parse(date1);
System.out.println("parsed date -> " + realDate);
} catch (ParseException e) {
// fall back on other formatter
try {
realDate = monthYearFormatter.parse(date1);
System.out.println("parsed date -> " + realDate);
} catch(ParseException e2) {
System.err.println("could not parse" + date1);
}
}
}
}
我建议您查看http://joda-time.sourceforge.net
这只是一个想法,不确定我是否真的使用它,但可以使用一个标记器来查看它的日期类型,“2005年8月11日”的2个令牌,“2005年8月”的1个令牌。因此,如果令牌计数为1,则使用一个格式化程序,如果令牌计数为2,则使用其他格式化程序,例如
int tokenCount = 0;
StringTokenizer tokenizer = new StringTokenizer("August 11, 2005", ",");
while(tokenizer.hasMoreTokens()) {
tokenizer.nextToken();
tokenCount++;
}
System.out.println("token count -> " + tokenCount);