我已经在android的两个设备之间通过蓝牙很好地完成了文件传输。默认情况下它接收到蓝牙接收文件夹。是否可以更改文件的接收位置?例如。我在两个设备(D1 和 D2)上都安装了我自己的应用程序。从我在 D1 上的应用程序,我向 D2 发送文件。是否可以将文件直接接收到我自己在 D2 上的应用程序中打开?如果是这样,我该怎么做?
我的代码:
sendDirectly.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (btAdapter.isEnabled()) {
Set<BluetoothDevice> devices = btAdapter.getBondedDevices();
if (devices.size() > 0) {
for ( BluetoothDevice device : devices) {
deviceBTAddress=device.getAddress();
}
ContentValues values = new ContentValues();
// values.put(BluetoothShare.URI, Uri.fromFile(new
// File(uri.getPath())).toString());
values.put(BluetoothShare.URI, uri.toString());
values.put(BluetoothShare.MIMETYPE, "image/jpeg");
values.put(BluetoothShare.DESTINATION, deviceBTAddress);
values.put(BluetoothShare.DIRECTION,
BluetoothShare.DIRECTION_OUTBOUND);
Long ts = System.currentTimeMillis();
values.put(BluetoothShare.TIMESTAMP, ts);
final Uri contentUri = getApplicationContext().getContentResolver()
.insert(BluetoothShare.CONTENT_URI, values);
}
}
}
}