Create class from Name - Android java.lang.reflect

Android examples for java.lang.reflect:Class

Description

Create class from Name

Demo Code

/*******************************************************************************
 * Copyright (c) 2011 MadRobot.//from w ww  .  j av  a 2s  . c  om
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the GNU Lesser Public License v2.1
 * which accompanies this distribution, and is available at
 * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
 * 
 * Contributors:
 *  Elton Kent - initial API and implementation
 ******************************************************************************/
//package com.java2s;

public class Main {
    private static Class<?> maybeForName(String name) {
        try {
            return Class.forName(name);
        } catch (ClassNotFoundException cnfe) {
            // OK
            return null;
        } catch (RuntimeException re) {
            return null;
        }
    }
}

Related Tutorials