如何 select 最近的任何文件并将其上传到服务器?
How to select any file from recent and upload it on server?
我想从 android 应用程序上传文件到服务器。因此用户可以从 android 应用程序中最近的图像、文档或任何 PDF 文件中选择任何文件,并将上传到服务器。
所以请告诉我如何打开最近的 activity 和 select 任何文件以及如何将其上传到服务器。
请帮帮我,这对我来说很重要。
您可以使用 */*
打开所有文件,如 android。
Intent intent = new Intent();
intent.setType("*/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, getString(R.string.perform_action_with)), attachmentChoice);
注意:其中 attachmentChoice
是 常数。
我想从 android 应用程序上传文件到服务器。因此用户可以从 android 应用程序中最近的图像、文档或任何 PDF 文件中选择任何文件,并将上传到服务器。
所以请告诉我如何打开最近的 activity 和 select 任何文件以及如何将其上传到服务器。
请帮帮我,这对我来说很重要。
您可以使用 */*
打开所有文件,如 android。
Intent intent = new Intent();
intent.setType("*/*");
intent.addCategory(Intent.CATEGORY_OPENABLE);
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, getString(R.string.perform_action_with)), attachmentChoice);
注意:其中 attachmentChoice
是 常数。