gpt4 book ai didi

Android:从设备浏览并上传应用程序中的 PDF 或 word 文件

转载 作者:行者123 更新时间:2023-11-29 00:15:31 25 4
gpt4 key购买 nike

我正在创建一个 android 移动应用程序,用户可以在其中上传他/她的简历,然后可以将其发送到服务器。

简历可以是pdf格式,也可以是word格式。

如何浏览pdf和word文件,浏览这些文件应该给什么类型?就像我们有图像的图像。

谢谢。

最佳答案

使用这个函数:

 private void getDocument()
{
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("application/msword,application/pdf");
intent.addCategory(Intent.CATEGORY_OPENABLE);
// Only the system receives the ACTION_OPEN_DOCUMENT, so no need to test.
startActivityForResult(intent, REQUEST_CODE_DOC);
}



@Override
protected void onActivityResult(int req, int result, Intent data)
{
// TODO Auto-generated method stub
super.onActivityResult(req, result, data);
if (result == RESULT_OK)
{
Uri fileuri = data.getData();
docFilePath = getFileNameByUri(this, fileuri);
}
}

// get file path

private String getFileNameByUri(Context context, Uri uri)
{
String filepath = "";//default fileName
//Uri filePathUri = uri;
File file;
if (uri.getScheme().toString().compareTo("content") == 0)
{
Cursor cursor = context.getContentResolver().query(uri, new String[] { android.provider.MediaStore.Images.ImageColumns.DATA, MediaStore.Images.Media.ORIENTATION }, null, null, null);
int column_index = cursor.getColumnIndexOrThrow(MediaStore.Images.Media.DATA);

cursor.moveToFirst();

String mImagePath = cursor.getString(column_index);
cursor.close();
filepath = mImagePath;

}
else
if (uri.getScheme().compareTo("file") == 0)
{
try
{
file = new File(new URI(uri.toString()));
if (file.exists())
filepath = file.getAbsolutePath();

}
catch (URISyntaxException e)
{
// TODO Auto-generated catch block
e.printStackTrace();
}
}
else
{
filepath = uri.getPath();
}
return filepath;
}

希望对您有所帮助。

关于Android:从设备浏览并上传应用程序中的 PDF 或 word 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27182417/

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