请解释以下代码@SuppressLint("SetTextI18n") protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) { super.onActivityResult(requestCode, resultCode, data); ImageView img_result=(ImageView) findViewById(R.id.pic); switch (requestCode) { case TAKE_PHOTO: if (resultCode == RESULT_OK) { //将图片解析成Bitmap对象,并把它显现出来 // String filePath = getFilesDir().getAbsolutePath()+"/image.jpeg"; // bitmap = BitmapFactory.decodeFile(filePath); //注意bitmap,后面再decode就会为空 try { bitmap = BitmapFactory.decodeStream(getContentResolver().openInputStream(imageUri)); } catch (FileNotFoundException e) { e.printStackTrace(); } // bitmap = BitmapFactory.decodeFile(picpath); picpath=imageUri.getPath().toString(); Log.e("", imageUri.getAuthority()); Log.e("picpath",picpath); @SuppressLint("SdCardPath") String fileName = picpath; img_result.setImageBitmap(bitmap); img_result.invalidate(); } break; case SCAN_OPEN_PHONE: if (resultCode == RESULT_OK){ Uri selectImage=data.getData(); String[] FilePathColumn={MediaStore.Images.Media.DATA}; Cursor cursor = getContentResolver().query(selectImage, FilePathColumn, null, null, null); cursor.moveToFirst(); //从数据视图中获取已选择图片的路径 int columnIndex = cursor.getColumnIndex(FilePathColumn[0]); picpath = cursor.getString(columnIndex); Log.e("picpath",picpath); cursor.close(); bitmap = BitmapFactory.decodeFile(picpath); img_result.setImageBitmap(bitmap); img_result.invalidate(); } break; default: break; } },并说明如何把得到的照片上传到mysql中
时间: 2023-04-07 11:03:03 浏览: 193
orai18n.jar下载
这段代码是在处理Android中的相机和相册的操作,根据requestCode的不同,分别处理拍照和选择相册的情况。其中,将得到的照片解析成Bitmap对象,并显示在ImageView中。
要将得到的照片上传到MySQL中,需要先将Bitmap对象转换成字节数组,然后将字节数组上传到服务器。具体实现可以参考以下步骤:
1. 将Bitmap对象转换成字节数组:
```
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] imageBytes = baos.toByteArray();
```
2. 将字节数组上传到服务器:
可以使用HttpURLConnection或者OkHttp等网络库进行上传,具体实现可以参考以下代码:
```
URL url = new URL("http://yourserver.com/upload.php");
HttpURLConnection conn = (HttpURLConnection) url.openConnection();
conn.setDoOutput(true);
conn.setRequestMethod("POST");
conn.setRequestProperty("Content-Type", "application/octet-stream");
conn.setRequestProperty("Content-Length", String.valueOf(imageBytes.length));
OutputStream os = conn.getOutputStream();
os.write(imageBytes);
os.flush();
os.close();
```
其中,upload.php是服务器端的脚本,用于接收上传的字节数组并保存到MySQL中。
阅读全文