我需要發送一個包含string
,integer
和double
數據混合的json對象到MongoDB。需要從Android發佈JSON對象
問題是我無法將對象從我的Activity發送到我用於連接並將數據發佈到MongoDB服務器的服務。
mJsonObject = new JSONObject();
intentService = new Intent();
intentService.setClass(this, MyService.class);
intentService.putExtra("Json Object", mJsonObject);
編譯器不會讓我的意圖putExtra
使用。
謝謝穆罕默德,您的解決方案滿足了我的需求......! – Nikhil
你很歡迎Nikhil,很高興我能幫忙:) –