これは私がバックエンドにPOSTを送信するために使用している一般的な方法である:
/**
* putJSONObject
*
* @param url
* @param jsonObject
* @param timeoutMillis
* @return
*/
protected static JSONObject putJSONObject (String url, JSONObject jsonObject, int timeoutMillis) throws IOException, JSONException {
StringBuilder stringBuilder = new StringBuilder();
HttpURLConnection httpURLConnection;
DataOutputStream printout;
httpURLConnection = (HttpURLConnection) new URL (url).openConnection();
httpURLConnection.setRequestMethod ("POST");
httpURLConnection.setReadTimeout (timeoutMillis);
httpURLConnection.setConnectTimeout (timeoutMillis);
httpURLConnection.setDoInput (true);
httpURLConnection.setDoOutput (true);
httpURLConnection.setUseCaches (false);
httpURLConnection.connect();
// Send POST output.
printout = new DataOutputStream (httpURLConnection.getOutputStream());
printout.writeBytes ("msg=" + URLEncoder.encode (jsonObject.toString(), "UTF-8"));
printout.flush();
printout.close();
InputStreamReader inputStreamReader = new InputStreamReader (httpURLConnection.getInputStream());
int read;
char[] buff = new char[4096];
while ((read = inputStreamReader.read (buff)) != -1) {
stringBuilder.append (buff, 0, read);
}
httpURLConnection.disconnect();
return new JSONObject (stringBuilder.toString());
}
JSONたmsg
として、これは文字列に画像を符号化するために送られ、送信されました私のコード:
/**
* toBase64
*
* @param bitmap
* @return String
*/
public static String toBase64 (Bitmap bitmap) {
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] imageBytes = baos.toByteArray();
String encodedImage = Base64.encodeToString(imageBytes, Base64.DEFAULT);
return encodedImage;
}
/**
* fromBase64
*
* @param encodedImage
* @return Bitmap
*/
public static Bitmap fromBase64 (String encodedImage) {
byte[] decodedByte = Base64.decode(encodedImage, Base64.DEFAULT);
return BitmapFactory.decodeByteArray(decodedByte, 0, decodedByte.length);
}
希望します。
? –
@WalterPalladino unfortunatly私はサーバー側で何も処理しません。 –
私のために働いているコードをいくつか追加しました。それがあなたを助けることを願ってください。私の場合、バックエンドはPHPです。 –