通过蓝牙共享一个byte []文件

时间:2014-08-23 10:42:21

标签: android file bluetooth share manifest

我想通过蓝牙共享一个byte []的文件。

            Intent intent = new Intent();  
            intent.setAction(Intent.ACTION_SEND);  
            intent.setType("text/byte");//what type ?


            String uri = Environment.getExternalStorageDirectory() + "/Keys/"+"public.key";
            intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(new File(uri)));
            startActivity(intent);

我应该叫什么类型?

我还需要更改清单文件吗?

1 个答案:

答案 0 :(得分:0)

可能缺少清单文件

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />