我以这种方式在android studio中通过位图将图像发送到服务器:
bitmap = MediaStore.Images.Media.getBitmap(getContentResolver(), resultUri);
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bitmap = Bitmap.createScaledBitmap(bitmap , 500, 500, true);
bitmap .compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] imageBytes = baos.toByteArray();
String encodedImage = Base64.encodeToString(imageBytes, Base64.DEFAULT);
现在在世博会上,我有使用图像选择器的uri,我该如何在反应世博会上做到这一点?