如何发送(分享)* csv文件?
我有Android应用程序,它创建了一个csv文件。我想分享它:发送到电子邮件,在excel打开等等。 我阅读了教程:set up file sharing和sharing a file,但无法理解:是否适用于我的选项?
我宣布一个清单:
<provider
android:name="android.support.v4.content.FileProvider"
android:authorities="com.nam1.name2.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths" />
</provider>
但我接下来该做什么?
你能告诉我一些简单的代码示例(也许是git-repo)如何将文件共享给另一个应用程序? 谢谢!
编辑:我写了一些新代码来共享文件(查看FileProvider
示例)
public class ExportActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_export);
Intent intentShareFile = new Intent(Intent.ACTION_SEND);
intentShareFile.setAction(Intent.ACTION_SEND);
File imagePath = new File(getApplicationContext().getFilesDir(), "statistics");
File newFile = new File(imagePath, "stat.csv");
CSVHelper csvHelper = new CSVHelper(SharedData.AllPlayersColl);
try {
String path=imagePath.getAbsolutePath();
csvHelper.SaveToCSV(path);
} catch (IOException e) {
e.printStackTrace();
}
Context context=getApplicationContext();
Uri contentUri = getUriForFile(context, "com.name1.name2.fileprovider", newFile);
List<ResolveInfo> resInfoList = getApplicationContext().getPackageManager()
.queryIntentActivities(intentShareFile, PackageManager.MATCH_DEFAULT_ONLY);
for (ResolveInfo resolveInfo : resInfoList) {
String packageName = resolveInfo.activityInfo.packageName;
getApplicationContext()
.grantUriPermission(packageName, contentUri, Intent.FLAG_GRANT_WRITE_URI_PERMISSION | Intent.FLAG_GRANT_READ_URI_PERMISSION);
}
intentShareFile.setData(contentUri);
intentShareFile.setFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);
setResult(100, intentShareFile);
startActivityForResult(intentShareFile,100);
}
}
CSVHelper
的位置:
fun SaveToCSV(fileName: String?) {
if (fileName == null)
throw NullPointerException("fileName is null!")
val writer = CSVWriter(FileWriter(fileName), '\t')
// make csv file
writer.writeNext(firstLine);
}
filepaths
是:
<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<paths>
<files-path name="stat" path="statistics/" />
</paths>
但是,我收到了一个错误:
Caused by: android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.SEND dat=content://com.name1.name2.fileprovider/stat/stat.csv flg=0x2 }
我想,当我开始Intent
变种列表显示(在Android设备上):email_app,excel_app等等。所以,我想发送noname意图。
答案 0 :(得分:1)
FileProvider
是一个帮助程序类,旨在以content://
URI而不是file://
URI共享文件,这些URI已被弃用了一段时间并且自API级别24以来被禁止。
您已声明内容提供商,现在需要对其进行配置,即选择可以投放的文件。这是在元数据中声明的xml/filepath
文件中完成的。然后,您将能够使用FileProvider.getUriForFile()
生成可共享的内容URI。
有一个完整的wrap up
不幸的是,并非所有应用程序都了解content://
URI。如果您需要与仅处理file://
URI的(非常旧的或写得很糟糕的)应用程序共享文件,如果将应用程序的目标级别设置为23或更低,则仍可以使用它们。