2012-11-28 44 views
7

我正在開發一個客戶端到一個Web服務公開(.wsdl)合同,這需要yyyy-MM-dd格式爲1請求參數,但是自動生成基於.wsdl的POJOS創建類型爲XMLGregorianCalendar的日期屬性。從XMLGregorianCalendar到日期/日曆添加額外的時間/不需要


我的問題是不是轉換或轉換爲的XMLGregorianCalendar看我下面的程序:

public static XMLGregorianCalendar toXMLGregorianCalendar(Calendar c){ 
GregorianCalendar gc = new GregorianCalendar(); 
gc.setTimeInMillis(c.getTimeInMillis()); 
XMLGregorianCalendar xc= null; 
try { 
    xc = DatatypeFactory.newInstance().newXMLGregorianCalendar(gc); 
} catch (DatatypeConfigurationException e) { 
    // TODO Auto-generated catch block 
    e.printStackTrace(); 
} 
return xc; 
} 

我的問題是從的XMLGregorianCalendar將日期/日曆增加了額外的時間/無用數據到我的yyyy-MM-dd時調用calendar.getTime();

在特定的代碼段我需要的XMLGregorianCalendar去日期

if (repairOrderType.getCloseDate() != null) { 

       LOG.debug("ServiceHistoryMapper, processRepairOrders() , repairOrderType.getCloseDate() BEFORE:" 
         + repairOrderType.getCloseDate()); 
       String date = repairOrderType.getCloseDate().getYear() + "-" 
         + repairOrderType.getCloseDate().getMonth() + "-" 
         + repairOrderType.getCloseDate().getDay(); 

       //Approach #1, trying to remove hour,minute,sec values by calendar.clear() method , not successful 
       Calendar calendar = Calendar.getInstance(); 
       calendar.set(repairOrderType.getCloseDate().getYear(), 
         repairOrderType.getCloseDate().getMonth(), 
         repairOrderType.getCloseDate().getDay()); 
       calendar.clear(Calendar.HOUR); 
       calendar.clear(Calendar.MINUTE); 
       calendar.clear(Calendar.SECOND); 
       calendar.clear(Calendar.MILLISECOND); 



       /*Approach#2 , trying to remove hour,minute,sec values using SimpleDateFormat , 
       * also not successful. SimpleDateFormat or DateFormat are use to format String output NOT remove internal data 
       * 
       DateFormat formatter = new SimpleDateFormat("yyyy-MM-dd"); 
       Calendar calendar = formatter.getCalendar(); 
       calendar.set(repairOrderType.getCloseDate().getYear(), 
       repairOrderType.getCloseDate().getMonth(), 
       repairOrderType.getCloseDate().getDay()); 
       */ 

       LOG.debug("ServiceHistoryMapper, processRepairOrders() , repairOrderType.getCloseDate() AFTER:" 
         + calendar.getTime()); 
       repairOrder.setCloseDate(calendar.getTime()); 

      } 

輸出:

27 - 11月2012年18:10:3​​9.743 DEBUG com.tms.owners.integration。 nsh.mapping.ServiceHistoryMapper - ServiceHistoryMapper,processRepairOrders(),repairOrderType.getCloseDate()BEFORE:2012-04-30

27-NOV-2012 18:10:51.413 DEBUG com.tms.owners.integration.nsh .mapp ing.ServiceHistoryMapper - ServiceHistoryMapper,processRepairOrders(),repairOrderType.getCloseDate()AFTER:週三5月30日18:00:00 PDT 2012

正如你可以在上面看到以前的日期是BEFORE:2012-04-30和AFTER日期爲5月30日18:00:00 PDT 2012帶有不需要的時間「18:00:00 PDT」。


下面是我的實際要求XML發送到服務:00額外的「-07:

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"> 
    <S:Body> 
     <ns4:VehicleServiceHistoryDetails 
      xmlns="urn:tms.toyota.com/Components" xmlns:ns2="urn://esb.ari.xxxxxx.com/2008/12/10/schemas/common/Customer" 
      xmlns:ns3="urn:incentives.ari.xxxxxx.com/StandardHeader" 
      xmlns:ns4="urn://esb.ari.xxxxxx.com/2008/12/10/schemas/History" 
      xmlns:ns5="http://ice.ari.xxxxxx.com/EMF" xmlns:ns6="urn:ari.xxxxxx.com/rtmheader"> 
      <ns5:ApplicationArea> 
       <ns5:CreationDateTime>2012-11-27T18:11:23.071-08:00 
       </ns5:CreationDateTime> 
       <ns5:Sender /> 
       <ns5:UserArea /> 
      </ns5:ApplicationArea> 
      <ns4:VehicleServiceHistoryDataArea> 
       <ns4:VehicleServiceHistoryHeader> 
        <ns3:TimeStamp>2012-11-27T18:11:23.071-08:00</ns3:TimeStamp> 
        <ns3:SourceSystem>TOO</ns3:SourceSystem> 
        <ns4:SourceKey>TOY1TWXE</ns4:SourceKey> 
       </ns4:VehicleServiceHistoryHeader> 
       <ns4:VehicleServiceHistory> 
        <ns4:VIN>XXXXXXXXXXXXXXXX</ns4:VIN> 
        <ns4:RepairOrder> 
         <ns2:RepairOrderDealer> 
          <DealerNumber>29059</DealerNumber> 
         </ns2:RepairOrderDealer> 
         <ns2:RepairOrderNumber>0088745</ns2:RepairOrderNumber> 
         <ns2:CloseDate>2012-05-30-07:00</ns2:CloseDate> 
        </ns4:RepairOrder> 
       </ns4:VehicleServiceHistory> 
      </ns4:VehicleServiceHistoryDataArea> 
     </ns4:VehicleServiceHistoryDetails> 
    </S:Body> 
</S:Envelope> 

您可以在2012-05-30-07請求XML見00 「我剛剛添加了數據2012-05-30。

感謝

回答

5

中的XML數據類型的上下文中的XMLGregorianCalendar通過在javax.xml.datatype.DatatypeFactory工廠方法,這似乎有一個叫做newXMLGregorianCalendarDate(年整型方法,INT月,日整型,詮釋時區創建);


所以我創建了一個工具方法:

public static XMLGregorianCalendar toXMLGregorianCalendarDateOnly(Calendar c){ 
    GregorianCalendar gc = new GregorianCalendar(); 
    gc.setTimeInMillis(c.getTimeInMillis()); 
    XMLGregorianCalendar xc= null; 
    try { 
     xc = DatatypeFactory.newInstance().newXMLGregorianCalendarDate(gc.get(Calendar.YEAR),Calendar.MONTH,Calendar.DAY_OF_MONTH,DatatypeConstants.FIELD_UNDEFINED); 
    } catch (DatatypeConfigurationException e) { 
     // TODO Auto-generated catch block 
     e.printStackTrace(); 
    } 
    return xc; 
    } 

的問題已經解決,我們所得到的期望YYYY-MM-DDD。

+1

此錯誤代碼是錯誤的。你只是設定一年 –

2

你也可以把它寫在下面的方式哪個更可讀:

GregorianCalendar gc = new GregorianCalendar(); 
gc.setTimeInMillis(c.getTimeInMillis()); 

XMLGregorianCalendar calendar = DatatypeFactory.newInstance().newXMLGregorianCalendar(gc); 
calendar.setMillisecond(DatatypeConstants.FIELD_UNDEFINED); 
calendar.setTimezone(DatatypeConstants.FIELD_UNDEFINED); 
0

我用下面的代碼來解決同樣的問題。

public static XMLGregorianCalendar toXMLGregorianCalendarWithoutTimeStamp(String date) { 
     Date mDate = null; 
     GregorianCalendar cal = new GregorianCalendar(); 
     XMLGregorianCalendar xmlGregorianCalendar; 
     DateFormat df = new SimpleDateFormat("dd-MM-yyyy"); 
     try { 
      mDate = df.parse(date); 
      cal.setTime(mDate); 
      xmlGregorianCalendar = DatatypeFactory.newInstance() 
        .newXMLGregorianCalendarDate(cal.get(Calendar.YEAR), 
          cal.get(Calendar.MONTH) + 1, 
          cal.get(Calendar.DAY_OF_MONTH), 
          DatatypeConstants.FIELD_UNDEFINED); 
      return xmlGregorianCalendar; 

     } catch (DatatypeConfigurationException e) { 
      LOGGER.error("Error in getCustomerCDRResponse Date Formate Type Configuartion :: " + e); 
     } catch (ParseException e) { 
      LOGGER.error("Error in getCustomerCDRResponse Date Parsing :: " + e); 
     } 
     return null; 
    } 
0

試試這個。

Date dob=null; 
    DateFormat df=new SimpleDateFormat("dd/MM/yyyy"); 
    dob=df.parse("10/02/2014 11:15:00"); 
    GregorianCalendar cal = new GregorianCalendar(); 

    cal.setTime(dob); 
XMLGregorianCalendar xmlDate3 = DatatypeFactory.newInstance().newXMLGregorianCalendarDate(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH)+1, cal.get(Calendar.DAY_OF_MONTH),DatatypeConstants.FIELD_UNDEFINED); 
System.out.println(xmlDate3);