自动接收应用程序中的文件

时间:2012-10-14 14:56:42

标签: android bluetooth

我正在为Android制作应用程序。我在设置中连接设备,我希望收到蓝牙的所有内容。
我没有像BluetoothChat示例那样的套接字客户端连接,并且发送的设备必须是任何设备。
实际上,我必须接受我的应用程序中的任何文件,并向设备发送消息 我尝试过使用BluetoothShare.java,但没有运气:

ContentValues values = new ContentValues();
    String address= addressString;
    values.put(BluetoothShare.URI, Uri.fromFile(new File(path)).toString());
    values.put(BluetoothShare.DESTINATION, address);
    values.put(BluetoothShare.DIRECTION, BluetoothShare.DIRECTION_OUTBOUND);
    Long ts = System.currentTimeMillis();
    values.put(BluetoothShare.TIMESTAMP, ts);
    Uri contentUri = getContentResolver().insert(BluetoothShare.CONTENT_URI, values);
    grantUriPermission(BluetoothShare., contentUri, Intent.FLAG_GRANT_READ_URI_PERMISSION);

关于如何实施它的任何想法?

0 个答案:

没有答案