我一直在使用下面的代碼來創建我的android OData服務使用者。OData4j是否以JSON格式請求響應或將響應轉換爲JSON格式? (Android)
Services = ODataConsumer
.newBuilder("http://xxx.xxx.xxx.xxx:xxxxx/WCFDataServices.svc/")
.setFormatType(FormatType.JSON).build();
我想知道的是,當客戶端通過了Services
消費者請求將請求使服務器創建一個JSON格式的響應或將OData4j /消費者轉換成JSON格式的響應。
在此先感謝您的幫助。 :)