阅读谷歌个人资料图片java.io.FileNotFoundException



我尝试在登录后读取谷歌用户的个人资料图片,但是,我遇到了输入流打开错误。我不想使用Glide或Picasso图书馆。 我的代码非常标准:

protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
// Result returned from launching the Intent from GoogleSignInClient.getSignInIntent(...);
if (requestCode == RC_SIGN_IN) {
// The Task returned from this call is always completed, no need to attach
// a listener.
Task<GoogleSignInAccount> completedTask = GoogleSignIn.getSignedInAccountFromIntent(data);
try {
final GoogleSignInAccount account = completedTask.getResult(ApiException.class);
String email = account.getEmail();
String deviceID = Settings.Secure.getString(LoginActivity.this.getContentResolver(), Settings.Secure.ANDROID_ID);
Uri personPhotoURL = Uri.parse(account.getPhotoUrl().toString());
try {
ContentResolver resolver = getBaseContext().getContentResolver();
InputStream imageStream = resolver.openInputStream(personPhotoURL);
Bitmap selectedImage = BitmapFactory.decodeStream(imageStream);
String encodedImage = encodeImage(selectedImage);
} catch (IOException e) {
e.printStackTrace();
}

Uri 显示正确的 URL(它在插入浏览器时加载图片(,但 imageStream 打开会抛出"java.io.FileNotFoundException: No Content provider: https://lh3.googleusercontent.com/a-/AAuE....."。

如何解决这个问题?

URL 是一个httpsURL,类似于此网页的 URL。ContentResolver不处理这些。

使用图像加载库(如 Glide 或 Picasso(从 URL 加载图像。或者,使用 OkHttp 执行 Web 请求。

相关内容

最新更新