因为我没有SD卡。 我想通过从内置的Gallery中选择图像将图像上传到服务器。
任何人都可以帮我解决如何将图像放置在内置图库中以便我可以从那里进行选择。
任何帮助都会被批评。
答案 0 :(得分:1)
您可以通过以下代码转到内置图库:
Button btnBrowse = (Button)findViewById(R.id.btn_browse);
btnBrowse.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent,
"Select Picture"), SELECT_PICTURE);
}
});
现在onActivityResult应该是这样的。
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK) {
if (requestCode == SELECT_PICTURE) {
Uri selectedImageUri = data.getData();
selectedImagePath = getPath(selectedImageUri);
EditText imageBrowse = (EditText)findViewById(R.id.thumb_url);
imageBrowse.setText(selectedImagePath);
byte[] strBytes = convertToBytes(selectedImagePath);
imageBytes = strBytes;
}
}
}
ConvertToBytes方法应该是这样的:
public byte[] convertToBytes(String selectedImagePath)
{
try
{
FileInputStream fs = new FileInputStream(selectedImagePath);
Bitmap bitmap = BitmapFactory.decodeStream(fs);
ByteArrayOutputStream bOutput = new ByteArrayOutputStream();
bitmap.compress(CompressFormat.JPEG,1, bOutput);
byte[] dataImage = bOutput.toByteArray();
return dataImage;
}
catch(NullPointerException ex)
{
ex.printStackTrace();
return null;
}
catch (FileNotFoundException e)
{
e.printStackTrace();
return null;
}
}
public String getPath(Uri uri) {
String[] projection = { MediaStore.Images.Media.DATA };
Cursor cursor = managedQuery(uri, projection, null, null, null);
int column_index = cursor
.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);
cursor.moveToFirst();
return cursor.getString(column_index);
}
通过这个你可以上传图像。