Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.net.URL;

import android.graphics.Bitmap;

import android.graphics.BitmapFactory;

public class Main {
    public static Bitmap getBitmap(String s) {
        Bitmap bitmap = null;
        try {
            URL url = new URL(s);
            bitmap = BitmapFactory.decodeStream(url.openStream());
        } catch (Exception e) {
            // TODO Auto-generated catch block   
            e.printStackTrace();
        }

        return bitmap;
    }
}