ビデオファイルをバイナリデータ形式に変換するために、いくつかのことを試みました。しかし、私はそれを得ることができませんでした。以下のコードで、これを解決するのを手伝ってください。ここで、このコードは、ファイル オプションを使用して SD カードからビデオ ファイルを取得しています。bytearray では、ファイルから取得した値をバッファに割り当てようとしています。次に、その bytearray に存在するコンテンツを表示しています。
Button bt=(Button)findViewById(R.id.button1);
bt.setOnClickListener(new View.OnClickListener()
{
@Override
public void onClick(View v)
{
// TODO Auto-generated method stub
File file = new File("/mnt/sdcard/myvideo.mp4");
FileInputStream objFileIS = null;
try
{
objFileIS = new FileInputStream(file);
}
catch (FileNotFoundException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
ByteArrayOutputStream objByteArrayOS = new ByteArrayOutputStream();
byte[] byteBufferString = new byte[1024];
try
{
for (int readNum; (readNum = objFileIS.read(byteBufferString)) != -1;)
{
objByteArrayOS.write(byteBufferString, 0, readNum);
System.out.println("read " + readNum + " bytes,");
}
}
catch (IOException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
byte[] byteBinaryData = Base64.encode((objByteArrayOS.toByteArray()), Base64.DEFAULT);
String strAttachmentCoded = new String(byteBinaryData);
System.out.println(strAttachmentCoded);
Toast.makeText(getApplicationContext(), strAttachmentCoded ,Toast.LENGTH_SHORT).show();
}
});