-1
アンドロイドアプリケーションでjsonを使用してサーバーにデータをアップロードする必要があります。 これは、コメントをアップロードするために提供される詳細です。jsonを使用してサーバーにデータをアップロードするandroid
------WebKitFormBoundaryZEhUiG82B2leVEc9
Content-Disposition: form-data; name="Comment"
Testing update
これは私が更新に使用したコードです。
URL url = new URL("MY URL comes here"); // here is your URL path
String js = "Content-Disposition: form-data; name=Comment";
String id = "ID=1"; //need to mention the id for upload
String json = "testttting update";
JSONObject postDataParams = new JSONObject();
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setRequestProperty("Cookie", cookie);
conn.setReadTimeout(15000);
conn.setConnectTimeout(15000);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type","application/x-www-form-urlencoded");
conn.setDoInput(true);
conn.setDoOutput(true);
conn.setUseCaches(false);
OutputStream os = conn.getOutputStream();
os.write(js.getBytes());
os.write(id.getBytes());
os.write(json.getBytes());
os.flush();
os.close();
このリクエストに対する応答はありません。それだけがサーバーに更新されます。よろしくお願いします。私はたくさん試して、解決策を見つけられませんでした。
を呼び出してみますか? –
私は今までボレーを使っていませんでした。あなたがボレーを使用する場合、コードがどのように変化するのかコードを伝えることができますか? – paul
'------ WebKitFormBoundaryZEhUiG82B2leVEc9'。はい。あなたの境界はどこですか? – greenapps