0

我想使用我的 Android 应用程序将文件从我的手机发送到其他手机。该文件的类型为“.Xcard”。我想使用android环境提供的默认蓝牙应用程序。也就是说,当我点击发送时,默认应用程序选择器应该打开,然后我应该能够将文件发送到其他设备,但选择设备。我该怎么做?该文件可能为空,也可能不为空

我已经尝试了以下代码,但它不起作用。我收到一条祝酒消息:文件未发送”

f = File.createTempFile("card", ".Xcard", getCacheDir());
FileWriter fw = new FileWriter(f);
BufferedWriter w = new BufferedWriter(fw);
w.write("hello my name is neeraj"); 
w.close();

Intent i = new Intent();
i.setAction(Intent.ACTION_SEND);
i.setType("*/*");
i.putExtra(i.EXTRA_STREAM, Uri.fromFile(f));
startActivity(i);    

请帮帮我,我有点卡住了

4

1 回答 1

0

从 API 文档:

公共抽象文件 getCacheDir()

返回文件系统上应用程序特定缓存目录的绝对路径。

(强调我的)

返回的目录getCacheDir()只能由您的应用程序读取,请getExternalCacheDir()改用。

于 2013-05-08T03:57:15.257 回答