如何从最近选择任何文件并将其上传到服务器上?

时间:2015-09-30 04:59:47

标签: android file-upload server image-upload recent-file-list

我想从Android应用程序上传服务器上的文件。所以用户可以从Android应用程序中最近的图像,文档或任何PDF中选择任何文件,并将上传到服务器上。

因此,请告诉我如何打开最近的活动并选择任何文件以及如何将其上传到服务器上。

请帮助我,这对我来说非常重要。

1 个答案:

答案 0 :(得分:0)

您可以使用*/*打开所有文件,如在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 常量