0
我已經使用「Https」協議創建了與服務器的連接。這裏是我的代碼...如何將JSON對象發送到服務器
String httpsURL = "https://abc.com/auth/login/";
HttpsURLConnection con = null;
try{
URL url = new URL(httpsURL);
con = (HttpsURLConnection) url.openConnection();
con.setRequestMethod("POST");
con.setDoInput(true);
con.setDoOutput(true);
con.connect();
//String respMessage = con.getResponseMessage();
//int respCode = con.getResponseCode();
}catch(....){....}
現在我必須通過該連接發送我的JSON對象到服務器。我怎樣才能做到這一點?請幫幫我。提前致謝。