2

我正在尝试创建一个临时文件并共享它。所以我创建了这个类:

public class GenerateFile {

    public static File writeToFile(Context mcoContext, String sBody) {

        String fileName = "LOG FILE_" + String.valueOf(System.currentTimeMillis()) +".txt";
        File file = new File(mcoContext.getCacheDir(), fileName);

        try{
            FileWriter writer = new FileWriter(file);
            writer.append(sBody);
            writer.flush();
            writer.close();
            return  file;

        }catch (Exception e){
            Toast.makeText(mcoContext, "File write failed: " + e.toString(), Toast.LENGTH_LONG).show();
        }
        return null;
    }
}

生成一个文件,之后我将在这里分享:

String logContent = "123";
File filePath = new File(file.getAbsolutePath(), "external_files");
filePath.mkdir();
Uri uri = FileProvider.getUriForFile(StatusActivity.this, getPackageName(), filePath);

Intent intent = ShareCompat.IntentBuilder.from(StatusActivity.this)
       .setStream(uri) // uri from FileProvider
        .setType("text/html")
        .getIntent()
        .setAction(Intent.ACTION_VIEW) //Change if needed
        .setDataAndType(uri, "text/*")
        .addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
startActivity(intent);

在清单中已经有这个权限:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="com.sec.android.provider.badge.permission.WRITE"/>
<uses-permission android:name="com.sec.android.provider.badge.permission.READ"/>

和提供者声明

 <provider
    android:name="android.support.v4.content.FileProvider"
    android:authorities="android.getqardio.com.gmslocationtest"
    android:exported="false"
    android:grantUriPermissions="true">
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/provider_paths"/>
</provider>

provider_paths 类是这样定义的:

<?xml version="1.0" encoding="utf-8"?>
<paths>
    <files-path
        name="share"
        path="external_files"/>
</paths>

但是当我尝试通过邮件或电报“无法附加文件”或“不支持的附件”共享它时,它会生成消息。在我看来,该文件还没有创建。

4

3 回答 3

3

其他应用无权访问您应用的getCacheDir(). FLAG_GRANT_READ_URI_PERMISSION并且FLAG_GRANT_WRITE_URI_PERMISSION是为了content Uri价值观,而不是file Uri价值观。而且,在 Android 7.0+ 设备上,您的代码应该会以FileUriExposedException.

用于FileProvider使您的内容可用于其他应用程序,并用于FileProvider.getUriForFile()获取.UriIntent

于 2019-07-02T11:23:33.770 回答
2

所以我遵循@CommonsWare 的建议,并编辑了我的代码。这是最终结果:

public class GenerateFile {

    public static Uri getFileURI(Context context, String nameFile, String content, String fileExtension) {
        DateFormat dateFormat = new SimpleDateFormat("yyyy_MM_dd");
        Date date = new Date();
        String fileName = dateFormat.format(date)+nameFile+fileExtension;
        File file = new File(context.getCacheDir(), fileName);

        try{
            FileWriter writer = new FileWriter(file);
            writer.append(content);
            writer.flush();
            writer.close();
            //Toast.makeText(context, "Writing to the file completed successfully", Toast.LENGTH_LONG).show();
        }catch (Exception e){
            Toast.makeText(context, "File writing failed: " + e.toString(), Toast.LENGTH_LONG).show();
        }

        File filePath = new File(context.getCacheDir(), "");
        File newFile = new File(filePath, fileName);
        return FileProvider.getUriForFile(context, "MYPACKAGE.fileprovider", newFile);
    }
}

在另一个班级:

private void sendFile(String nameFile, String logContent,  String fileExtension) {
        Uri contentUri = GenerateFile.getFileURI(getApplicationContext(), nameFile, logContent, fileExtension);

        Intent intent = ShareCompat.IntentBuilder.from(StatusActivity.this)
                .setStream(contentUri) // uri from FileProvider
                .setType("text/plain")
                .getIntent()
                .addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
        startActivity(Intent.createChooser(intent, "send"));
}

所以发送文件。我还删除了清单中的权限(前面提到过),因为我不再需要它了。

我还像这样编辑了我的 provider 和 provider_path 文件:

<provider
   android:name="android.support.v4.content.FileProvider"
   android:authorities="MYPACKAGE.fileprovider"
   android:exported="false"
   android:grantUriPermissions="true">
   <meta-data
            android:name="android.support.FILE_PROVIDER_PATHS"
            android:resource="@xml/provider_paths" />
 </provider>

<?xml version="1.0" encoding="utf-8"?>
<cache-path
    name="my_files"
    path=""
/>

现在它起作用了!非常感谢你们的帮助!

于 2019-07-03T14:54:50.993 回答
1

您是否特别要求用户获得这些权限?仅将权限放在目标 SDK 的清单中低于 28 是不够的。此外,在 Android Q 中,您将需要完全解决外部存储权限,因为这是不允许的。

于 2019-07-02T11:22:19.723 回答