1

我试图用毫秒分割日期并以我的格式打印,但索引超出范围异常。它适用于 split("/") 但不适用于 split(".")。

我不知道为什么会这样。

代码是:

public class c {

public static void main(String[] arg)
{
    Date date=new Date();                                                                    
     DateFormat formatter = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss.FFF");                   
     System.out.println(formatter.format(date));

     String a=formatter.format(date);
     String b[]=a.split(" ")[0].split("/");
     String x1=(Integer.parseInt(b[2])-2000)+b[1]+b[0];
     System.out.println("date part is : "+x1);
     String c[]=a.split(" ")[1].split(":");
     System.out.println(c[0]);
     System.out.println(c[1]);
     System.out.println(c[2]);
     System.out.println(c[2].trim().split(".")[0]);// exception at this line
     System.out.println(c[2].trim().split(".")[1]);
     String x2=c[0]+c[1]+c[2].split(".")[0]+c[2].split(".")[1]+"";
     System.out.println("time part is : "+x2);
}
}

日志是:

08/10/2013 12:02:18.002
date part is : 131008
12
02
18.002
Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException:0   at c.main(c.java:22)
4

3 回答 3

5

java.lang.String.split(String regex)将正则表达式作为参数。

一个点.是“任何字符”的正则表达式。所以你在每个字符之后分割你的输入。

转义点:

split("\\.");
于 2013-10-08T06:52:20.490 回答
0

您可以使用 java.util.regex.Pattern.quote(".") 将字符串拆分为 "."

str.split(java.util.regex.Pattern.quote("."));

于 2013-10-08T06:56:14.030 回答
0

尽量不要拆分...你总是可以使用这个formatter.day | .月 | . 小时左右....

于 2013-10-08T06:58:30.303 回答