如何通过 Web 服务执行 SQL 查询以在 android 平台的服务器数据库中插入数据。如果您有要在服务器数据库中插入的图像,那么它的使用方式就是查询字符串。
StackOverFlow 中的新功能。对不起英语。
if (mediaFile != null) {
Bitmap bm = BitmapFactory.decodeFile(mediaFile.getAbsolutePath());
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bm.compress(Bitmap.CompressFormat.PNG, 100, baos);
byte[] b = baos.toByteArray();
//encodedImage = Base64.encodeToString(b, Base64.DEFAULT);
} else{
Toast.makeText(this, "Capture An Asset Image.", Toast.LENGTH_LONG) .show();