当前位置: 首页 > 知识库问答 >
问题:

与FileProvider共享日志文件失败

曾骁
2023-03-14

我正在尝试使用FileProvider内容提供程序共享我的内部日志文件。我有以下

<provider
    android:name="android.support.v4.content.FileProvider"
    android:authorities="nl.charm.nedradio"
    android:exported="false"
    android:grantUriPermissions="true">
    <meta-data
        android:name="android.support.FILE_PROVIDER_PATHS"
        android:resource="@xml/file_provider_paths" />
</provider>

文件\u提供程序\u路径。xml包含:

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

创建共享意图的代码是:

private static final String LOGFILE_NAME = "log.txt";
private static final String AUTHORITY = "nl.charm.nedradio";

public static Intent getShareIntent(Context context)
{
    Intent intent = new Intent(Intent.ACTION_SEND);
    intent.setType("text/plain");
    intent.putExtra(Intent.EXTRA_SUBJECT, "Log File");
    intent.putExtra(Intent.EXTRA_TEXT, "App logfile.");

    // Allow access outside of share application's realm
    intent.setFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION);
    intent.setFlags(Intent.FLAG_GRANT_WRITE_URI_PERMISSION);

    File logFile = new File(context.getExternalFilesDir(null), LOGFILE_NAME);
    Uri logURI = FileProvider.getUriForFile(context, AUTHORITY, logFile);
    intent.putExtra(Intent.EXTRA_STREAM, logURI);

    return intent;
}

意图的创建工作正常,但当我尝试与Gmail等共享时,logcat中出现以下错误:

2018-10-18 10:16:49.536 4585-4585/com.google.android.gm E/Gmail: Gmail:Error adding attachment
    exk: FileNotFoundException when openFileDescriptor.

我一直在寻找答案,但没有找到。那么有没有关于我做错了什么的建议?


共有2个答案

叶声
2023-03-14

这是一个类似的问题,我的答案中有一幅图。请检查这个问题,我保证可以解决你的问题。

<files-path name="name" path="path" />  
Represents files in the files/ subdirectory of your app's internal storage area. This subdirectory is the same as the value returned by Context.getFilesDir().

<external-path name="name" path="path" />
Represents files in the root of the external storage area. The root path of this subdirectory is the same as the value returned by Environment.getExternalStorageDirectory().

<external-files-path name="name" path="path" />
Represents files in the root of your app's external storage area. The root path of this subdirectory is the same as the value returned by Context#getExternalFilesDir(String) Context.getExternalFilesDir(null).
慕容念
2023-03-14

在进一步搜索之后,我发现我使用了不正确的位置来保存日志文件。为了解决这个问题,我必须对logback进行以下更改。xml配置

<configuration>

    <property name="LOGFILE_NAME" value="log.txt" />
    <property name="EXT_FILES_DIR" value="${EXT_DIR:-/sdcard}/Android/data/${PACKAGE_NAME}/files" />

    <appender name="rollingfile" class="ch.qos.logback.core.rolling.RollingFileAppender">
        <file>${EXT_FILES_DIR}/${LOGFILE_NAME}</file>

        <rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
            <fileNamePattern>${LOGFILE_NAME}.%i</fileNamePattern>
            <minIndex>1</minIndex>
            <maxIndex>1</maxIndex>
        </rollingPolicy>

        <triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
            <maxFileSize>400KB</maxFileSize>
        </triggeringPolicy>

        <encoder>
            <pattern>%date %-5level %logger{10} - %msg%n</pattern>
        </encoder>
    </appender>

    <root level="TRACE">
        <appender-ref ref="rollingfile" />
    </root>

</configuration>

相关更改是属性EXT\u FILES\u DIR的值。这将使用应用程序可用的外部存储,而不是旧路径/data/data/nl。魅力NED收音机/文件

另一个需要更改的是文件\u提供程序\u路径。xml。在这里,外部路径从”更改 “/”

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

现在,共享可以与Gmail和Google Drive一起使用。

 类似资料:
  • 但是,执行这一行给了我(为了保护无辜者而改变了名字): 应用程序A在清单文件中有以下内容: filePaths.xml具有: 文件最终的实际路径是: 在这一点上,我被难住了。我不知道为什么不能授予我在同一个应用程序中创建的文件的权限。所以我的问题是:为什么我会得到这个异常,我如何才能成功地授予应用程序B的权限?

  • 我正在尝试传递一个位于我的应用程序的res/raw目录中的图像以及共享意图。 我遵循了FileProvider文档中描述的流程,下面是我的代码: Androidanifest.xml 我的活动中的代码: 由于无法访问我在其他应用程序中获取的文件,因此上述操作无效: java.io.FileNotFoundException:FILE_PATH:打开失败: EACCES(权限拒绝) 知道我做错了什么

  • 问题内容: 有没有一种方法可以将log4j日志事件写入到也由其他应用程序写入的日志文件中。其他应用程序可以是非Java应用程序。有什么缺点?锁定问题?格式化? 问题答案: Log4j有一个SocketAppender,它将事件发送到服务,您可以自己实现或使用与Log4j捆绑在一起的简单实现。 它还支持syslogd和Windows事件日志,这对于尝试将日志输出与非Java应用程序中的事件统一起来可

  • 我看到了很多代码和示例,但我的应用程序还不能正常工作,我想在文件夹,如存储/模拟/0/Android/data/ir。esfandune。mohsen/files/Download/cnt\u imags/images/n1/n1(18)。jpg,我在清单中定义提供者: 和XML: 我的代码是: 但是当发送到其他应用程序时,不要分享任何东西

  • 问题内容: 我有几个不同的过程,我希望它们全部记录到同一个文件中。这些进程在Windows 7系统上运行。有些是python脚本,有些是批处理文件。 在Unix下,您只需让所有人以附加模式打开文件并注销即可。只要每个进程在单个消息中写入的字节数少于字节,就可以确保每个调用都不会交叉。 有没有办法在Windows下实现这一目标?像Unix这样幼稚的方法失败了,因为Windows不喜欢一个以上的进程,

  • 跟随https://developer.android.com/training/secure-file-sharing/index.html,并能够共享文件在内部目录(/data/data/pack/files/xxx/)的应用程序到客户端应用程序使用file提供程序。 如何将资产文件夹(而不是内部目录)中的文件共享到客户端应用程序。 谢谢