Java tutorial
//package com.java2s; /* * M2X Messenger, an implementation of the Yahoo Instant Messaging Client based on OpenYMSG for Android. * Copyright (C) 2011-2012 Mehran Maghoumi [aka SirM2X], maghoumi@gmail.com * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ import java.net.URL; import android.graphics.Bitmap; import android.graphics.BitmapFactory; public class Main { /** * Retrieves the Yahoo! avatar of the specified user. * * @param userId * The ID of the user to get the avatar of. * @return A bitmap containing the avatar which is received. */ public static Bitmap getYahooAvatar(final String userId) { try { return BitmapFactory .decodeStream(new URL("http://img.msg.yahoo.com/avatar.php?yids=" + userId).openStream()); } catch (Exception e) { e.printStackTrace(); return null; } } }