一个 java 代码在 2 台不同的电脑上表现不同

one java code behave differ on 2 differ pc

我有简单的 JAXB 解组代码。

package com.example;
import java.io.StringReader;

import javax.xml.bind.JAXBContext;
import javax.xml.bind.Unmarshaller;
import javax.xml.transform.stream.StreamSource;

public class Main {

    public static void main(String[] args) {

        try {
        StringBuilder xml = new StringBuilder();
        xml.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>")
            .append("<item><pubDate>Thu, 12 May 2016 08:44:05 +0000</pubDate></item>");

        JAXBContext jaxbContext = JAXBContext.newInstance(Item.class);
        Unmarshaller jaxbMarshaller = jaxbContext.createUnmarshaller();

        StreamSource ss = new StreamSource(new StringReader( xml.toString()));
        Item example = (Item) jaxbMarshaller.unmarshal(ss);
        System.out.println(example);
      } catch (Exception e) {
        System.out.println("exception "+e);
            e.printStackTrace();
          }
    }
}

项目 class:

package com.example;

import java.util.Date;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;

@XmlRootElement(name = "item")
@XmlAccessorType(XmlAccessType.NONE)
public class Item {

    @XmlElement(name = "pubDate")
    @XmlJavaTypeAdapter(MyDateFormatAdapter.class)
    private Date pubDate;

    public String toString() {
        return "Item:"+this.pubDate.toString();
    }

    public Date getPubDate() {
        return pubDate;
    }

    public void setPubDate(Date pubDate) {
        this.pubDate = pubDate;
    }


}

和 MyDateFormatAdapter class

package com.example;


import java.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.Date;

import javax.xml.bind.annotation.adapters.XmlAdapter;

public class MyDateFormatAdapter extends XmlAdapter<String, Date> {

    private static final String FORMAT = "EEE, dd MMM yyyy HH:mm:ss Z";

    public Date unmarshal(String v) throws Exception {
        DateFormat dateFormat = new SimpleDateFormat(FORMAT);
        return dateFormat.parse(v);
    }

    public String marshal(Date d) throws Exception { 
        DateFormat dateFormat = new SimpleDateFormat(FORMAT);
        String formattedDate = dateFormat.format(d);
        return formattedDate; 

    }

}

所以,在第一台电脑上(windows 7,jdk 1.7)代码在第二台电脑(windows 7,jdk 1.7) 它工作正常。 Returns Item:Thu May 12 10:44:05 CEST 2016 我无法弄清楚这种行为的原因是什么。也许一些假设?

更新: 当我删除注释时 @XmlJavaTypeAdapter(MyDateFormatAdapter.class) 代码变得像在笔记本电脑上一样工作并抛出相同的异常

 exception java.lang.NullPointerException
    java.lang.NullPointerException
        at com.example.Item.toString(Item.java:21)
        at java.lang.String.valueOf(String.java:2849)
        at java.io.PrintStream.println(PrintStream.java:821)
        at com.example.Main.main(Main.java:27)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
        at java.lang.reflect.Method.invoke(Method.java:606)
        at com.intellij.rt.execution.application.AppMain.main(AppMain.java:144)

您的 MyDateFormatAdapter 取决于 JVM 的默认平台区域设置。

如果该语言环境不是英语语言环境,它将无法解析 Thu 的日期模式 EEE。 在这种情况下 dateFormat.parse 将抛出 ParseException。 Unmarshaller 捕获该异常,但随后 pubDate 成员将被初始化为 null。

因此,您的 Item.toString 引发了 NPE,因为它依赖于非空 pubDate 值。

解决方案:在创建 DateFormat 时指定语言环境。

public class MyDateFormatAdapter extends XmlAdapter<String, Date> {

    private static final DateFormat dateFormat = 
        new SimpleDateFormat("EEE, dd MMM yyyy HH:mm:ss Z", Locale.US);

    @Override public Date unmarshal(String v) throws Exception {
        return dateFormat.parse(v);
    }

    @Override public String marshal(Date d) throws Exception { 
        return dateFormat.format(d);
    }
}