如何访问我的应用程序中的gmail附件数据



我有一个应用程序,它使用专门创建的二进制(.gcsb)文件类型。这些文件保存在SD卡上的一个文件夹中。

目前,它们使用ES文件资源管理器或手机制造商的"行为像USB驱动器"传输实用程序进行切换。笨拙。我想要的是能够通过电子邮件将文件发送到手机,然后从gmail中以附件的形式打开文件,这将启动应用程序,然后将其保存到相应的SD卡文件夹中。

我发现了一些关于设置意图的东西,希望通过点击gmail中的"预览"来启动应用程序(特别是在我的Android应用程序中打开自定义gmail附件),但我完全不确定的是如何访问文件数据!我想它一定是和Intent.get…Extra()函数一起使用的,但是是哪个函数,以及如何使用它?

找到了如何做到这一点。希望这能帮助其他人。党的地雷,部分来自其他岗位。它旨在处理.gcsb文件附件。

意图过滤器是

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <data android:mimeType="application/octet-stream" />
</intent-filter>

活动onCreate()/onRestart()中的代码是

Intent intent = getIntent();
InputStream is = null;
FileOutputStream os = null;
String fullPath = null;
try {
    String action = intent.getAction();
    if (!Intent.ACTION_VIEW.equals(action)) {
        return;
    }
    Uri uri = intent.getData();
    String scheme = uri.getScheme();
    String name = null;
    if (scheme.equals("file")) {
        List<String> pathSegments = uri.getPathSegments();
        if (pathSegments.size() > 0) {
            name = pathSegments.get(pathSegments.size() - 1);
        }
    } else if (scheme.equals("content")) {
        Cursor cursor = getContentResolver().query(uri, new String[] {
            MediaStore.MediaColumns.DISPLAY_NAME
        }, null, null, null);
        cursor.moveToFirst();
        int nameIndex = cursor.getColumnIndex(MediaStore.MediaColumns.DISPLAY_NAME);
        if (nameIndex >= 0) {
            name = cursor.getString(nameIndex);
        }
    } else {
        return;
    }
    if (name == null) {
        return;
    }
    int n = name.lastIndexOf(".");
    String fileName, fileExt;
    if (n == -1) {
        return;
    } else {
        fileName = name.substring(0, n);
        fileExt = name.substring(n);
        if (!fileExt.equals(".gcsb")) {
            return;
        }
    }
    fullPath = ""/* create full path to where the file is to go, including name/ext */;
    is = getContentResolver().openInputStream(uri);
    os = new FileOutputStream(fullPath);
    byte[] buffer = new byte[4096];
    int count;
    while ((count = is.read(buffer)) > 0) {
        os.write(buffer, 0, count);
    }
    os.close();
    is.close();
} catch (Exception e) {
    if (is != null) {
        try {
            is.close();
        } catch (Exception e1) {
        }
    }
    if (os != null) {
        try {
            os.close();
        } catch (Exception e1) {
        }
    }
    if (fullPath != null) {
        File f = new File(fullPath);
        f.delete();
    }
}

它似乎可以在标准的Android gmail和邮件应用程序中工作。根据gmail中按下的是"下载"(方案文件)还是"预览"(方案内容),可以通过两种不同的方式获得文件名。

请注意,活动不能设置为单个实例,这一点非常重要。

nwm01223'答案正确!小附录:他的答案只适用于ACTION_VIEW。如果添加

Uri uri = null;
if(Intent.ACTION_VIEW.equals(action)){
    uri = intent.getData();
} else if(Intent.ACTION_SEND.equals(action)){
    uri = (Uri) intent.getParcelableExtra(Intent.EXTRA_STREAM);
}

它也适用于ACTION_SEND

相关内容

  • 没有找到相关文章

最新更新