Androidで画像や動画をHTTPアップロードするアプリを開発しています。
ファイルパスからファイルを作り、バイト配列に変換して送ることまでわかったのですが、変換時にFileNotFoundExceptionが発生してしまいます。
// データをバイト配列に File file = new File(uri.getPath()); byte[] bytes = null; // ここでFileNotFoundExceptionが発生します try (FileInputStream inputStream = new FileInputStream(file); ByteArrayOutputStream bos = new ByteArrayOutputStream();) { byte[] buffer = new byte[1024]; int len = 0; while((len = inputStream.read(buffer)) != -1) { bos.write(buffer, 0, len); } bytes = bos.toByteArray(); } catch (Exception e) { e.printStackTrace(); } // ストリーム開始 try { // 通信の準備 con = (HttpURLConnection) url.openConnection(); con.setConnectTimeout(5000); con.setReadTimeout(5000); con.setRequestMethod("POST"); con.setRequestProperty("Connection", "Keep-Alive"); con.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary); con.setRequestProperty("Accept-Charset", "UTF-8"); con.setUseCaches(false); con.setDoOutput(true); // 出力ストリームを生成 dos = new DataOutputStream(con.getOutputStream()); // 出力ストリームにファイルを書き込み dos.writeBytes(breaks + hyphens + boundary + breaks); dos.writeBytes("Content-Disposition: form-data; name=\"upfile\"; filename=\"upfile.jpg\"" + breaks + breaks); dos.write(bytes); dos.writeBytes(breaks + hyphens + boundary + hyphens + breaks); // 出力ストリームにテキストを書き込み dos.writeBytes(hyphens + boundary + breaks); dos.writeBytes("Content-Disposition: form-data; name=\"textpart\"" + breaks + breaks); // 通信スタート con.connect(); // レスポンスを取得 res = new Streamer().convert(con.getInputStream()); // 出力を閉じる dos.close(); } catch (IOException e) { e.printStackTrace(); } finally { // 通信を閉じる con.disconnect(); }
そもそものURIが間違っていたのかもしれないと考え、別のところでURIからビットマップを生成してimageViewに表示する記述を行ったところ、正常に表示されました。また、URIをログ出力した結果は以下の通りで、正常に取得できていると思います。
/0/1/content://media/external/images/media/73102/ORIGINAL/NONE/image/jpeg/122683034
ただ、その直後にFileInputStreamを生成しようとすると、やはりFileNotFoundExceptionが発生します。
java.io.FileNotFoundException: /0/1/content:/media/external/images/media/73102/ORIGINAL/NONE/image/jpeg/122683034 (No such file or directory)
// ビットマップ表示は正常に行われます try { bmp = MediaStore.Images.Media.getBitmap(getContentResolver(), uri); } catch (IOException e) { e.printStackTrace(); } imageView.setImageBitmap(bmp); // が、ここでやっぱりFileNotFoundExceptionが発生 File file = new File(uri.getPath()); try { FileInputStream inputStream = new FileInputStream(file); } catch (FileNotFoundException e) { e.printStackTrace(); }
FileInputStreamの使い方が間違っているのでしょうか。
基本的なところがわかっていない可能性もありますが、ご教授いただけますと幸いです。
それでは、よろしくお願い申し上げます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。