我正在使用安卓系统。我正在从图像文件中获取字节数组。我的要求是将字节类型变量发送到服务器,而不是字节数组。
但是我得到了字节数组,然后我想将该字节数组转换为字节变量。
我的代码就像
InputStream in = getContentResolver().openInputStream(selectedImageUri);
byte[] imageData = readBytes(in);
byte bytedata = // here I want get the bytes from imageData array
public byte[] readBytes(InputStream inputStream) throws IOException {
ByteArrayOutputStream byteBuffer = new ByteArrayOutputStream();
int bufferSize = 1024;
byte[] buffer = new byte[bufferSize];
int len = 0;
while ((len = inputStream.read(buffer)) != -1) {
byteBuffer.write(buffer, 0, len);
}
// and then we can return your byte array.
return byteBuffer.toByteArray();
}