私は完全に失われていますからHTTP POSTリクエストによってBase64でエンコードされた画像を送信し、私は、PHPのWebページにAndroidアプリを経由して写真を送信しようとしています。私はそれがうまく働いた単純な文字列ではなく重いファイルで試してみました、アンドロイド
私はポストデータを取得することができます...
Theoriticallyのすべてが右でなければなりませんが、先のデータが破損しているか、何かが私にはわかりませんデータが破損しているように見えます。
public class EncodingAndSending extends Thread{
ShareOnMyWebSiteActivity mycontext;
ContentResolver cr;
Uri uri;
public Handler mainHandler,sHandler;
public EncodingAndSending(ShareOnMyWebSiteActivity myctxt,Handler mainone,Uri URI,ContentResolver crr){
mycontext=myctxt;
cr=crr;
uri=URI;
mainHandler=mainone;
this.start();
}
return buffer.toString().toUpperCase();
}
public void run(){
InputStream is=null;
byte[] data=null;
try {
is = cr.openInputStream(uri);
// Get binary bytes for encode
data = getFileBytes(is);
} catch (Exception e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
String data_string=Base64.encodeToString(data,Base64.URL_SAFE);
if(data_string!=""){
SendRequest(data_string);
}
else{
}
}
public byte[] getFileBytes(InputStream ios) throws IOException {
ByteArrayOutputStream ous = null;
//InputStream ios = null;
try {
byte[] buffer = new byte[4096];
ous = new ByteArrayOutputStream();
//ios = new FileInputStream(file);
int read = 0;
while ((read = ios.read(buffer)) != -1)
ous.write(buffer, 0, read);
} finally {
try {
if (ous != null)
ous.close();
} catch (IOException e) {
// swallow, since not that important
}
try {
if (ios != null)
ios.close();
} catch (IOException e) {
// swallow, since not that important
}
}
return ous.toByteArray();
}
private void SendRequest(String data_string){
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("xxxxx.php");
try {
List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("image", data_string));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);
ResponseHandler<String> responseHandler=new BasicResponseHandler();
String responseBody = httpclient.execute(httppost, responseHandler);
} catch (Exception e) {
// TODO Auto-generated catch block
}
}
}
EDIT:
これは動作します。画像をエンコードしてデコードしてプレビューできます。私はgetBytes()関数を使用しませんでしたが、そこから問題が発生するかどうかわかりません。
お知らせします。
super.onCreate(savedInstanceState);
setContentView(R.layout.test_image);
ImageView image = (ImageView) findViewById(R.id.imageView1);
FileInputStream in;
BufferedInputStream buf;
Intent intent = getIntent();
Bundle extras = intent.getExtras();
Uri uri = (Uri) extras.getParcelable(Intent.EXTRA_STREAM);
ContentResolver cr = getContentResolver();
Bitmap bMap=null;
try {
InputStream is = cr.openInputStream(uri);
bMap = BitmapFactory.decodeStream(is);
if (is != null) {
is.close();
}
} catch (Exception e) {
Log.e("Error reading file", e.toString());
}
ByteArrayOutputStream baos = new ByteArrayOutputStream();
bMap.compress(Bitmap.CompressFormat.JPEG, 100, baos);
byte[] b = baos.toByteArray();
String data_string=Base64.encodeToString(b,Base64.DEFAULT);
b=null;bMap=null;
b=Base64.decode(data_string, Base64.DEFAULT);
bMap=BitmapFactory.decodeByteArray(b, 0, b.length);
image.setImageBitmap(bMap);
あなたはより良いあなたがそのような 'byteArrayToHexString'として、あなたの例では使用していないコードを残すことができ、それだけで読者を混乱させる。 –
それは関連性があるかどうかわかりませんでした。 – flo360
メソッド 'getFileBytes'のコードを含めることができますか?多分それが原因だろうか? –