gpt4 book ai didi

android - 从设备中选择一个文件并将其上传到 webview 中加载的页面

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:42:50 25 4
gpt4 key购买 nike

在 webview 中,加载了来自 url 的一页。在该页面中,名称“选择文件”中有一个浏览文件的按钮。当用户单击该按钮时,应用程序应显示图库以选择一个文件并将其检索到该页面作为输入。我该如何实现?

最佳答案

选择一个文件:

final int CHOOSE_FILE = 1;
//...
Intent chooseFile = new Intent(Intent.ACTION_GET_CONTENT);
chooseFile.setType("file/*");
Intent c = Intent.createChooser(chooseFile, "Choose file");
startActivityForResult(c, CHOOSE_FILE);

然后在你的 onActivityResult 中:

if(resultCode == RESULT_OK){
Uri uri = data.getData();
String filePath = uri.getPath();
// here goes the code to upload the file
}

关于android - 从设备中选择一个文件并将其上传到 webview 中加载的页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4449387/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com