Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.lang.reflect.Method;

public class Main {
    public static Object invokeMethod(Object receiver, Method method, Object... args) {
        try {
            return method.invoke(receiver, args);
        } catch (Exception e) {
            return null;
        }
    }
}