2016-04-16 71 views

回答

0

3小時搜索後,我得到了來自SAP社區博客
其實我是想下面一個

if (property !=null) { 
    ObjName.setDate((Date)property.getValue()); 
    } 

預期的解決辦法,而我是在正確的類型轉換得到的例外是由於。
我們需要強制轉換ODATA Edm.DateTime的GregorianCalendar Android中像

if (property !=null) { 
      ObjName.setDate((GregorianCalendar) property.getValue()); 
     } 

注意:在上面的代碼中的setDate()是setter方法。

詳細使用說明:
http://scn.sap.com/community/developer-center/mobility-platform/blog/2015/08/15/handling-datetime-from-frontend-with-odata-in-native-android-app-using-smp-30][1]

相關問題