想要在运行时Java中动态传递class.getmethod参数

时间:2018-07-29 14:26:35

标签: java reflection overloading

我想通过在运行时提供methodName来调用方法。我可以通过以下方式做到这一点。

Method method = MyObject.class.getMethod("doSomething", String.class);
Object returnValue = method.invoke(null, "parameter-value1");

但是我想列出所有带有该方法名称和不同参数集的重载方法,并让用户选择特定的重载方法并在

中动态传递这些参数。
Method method = MyObject.class.getMethod("doSomething", String.class);

而不是硬编码String.class

假设我有两个类似的方法

methodName(String) 

和重载方法

methodName(String, int)

我想让用户选择在运行时选择哪个,然后将该信息传递给该特定方法的getMethod函数。

我该怎么做?

1 个答案:

答案 0 :(得分:3)

我们有一个名为Class.forName(String)的方法,用于通过其名称加载Class<?>的实例。

问题是我们必须传递所需类的完全限定名称(包括包的名称)。这意味着Class.forName("String")无法正常工作。相反,我们需要将其称为Class.forName("java.lang.String")

我们可以有一个地图(或枚举)来保存这些Class<?>。由于我们期望用户进行协作,因此密钥为String,结构类似于Map<String, Class<?>>

user > string
we   < class java.util.String

然后,我们应该弄清楚如何根据它们的类型解析方法参数-它们将以String的形式出现。我会使用每种类型的Function<String, ?>

Function<String, T> converter = (String s) -> T.convertFromString(s);

为使您更清楚,我为您编写了一个简单而完整的示例:

class Test {
    // prints s once
    public static void method(String s) {
        System.out.println(s);
    }

    // prints s i times
    public static void method(String s, int i) {
        System.out.println(IntStream.rangeClosed(0, i - 1)
                .mapToObj($ -> s)
                .collect(Collectors.joining(" ")));
    }

    public static void main(String[] args) {
        perform();
    }

    public static Object perform() {
        final Scanner scanner = new Scanner(System.in);

        // read the method name
        final String methodName = scanner.nextLine();

        final Method[] methods = Arrays.stream(Test.class.getDeclaredMethods())
                .filter(m -> m.getName().endsWith(methodName) && !m.isSynthetic())
                .toArray(Method[]::new);

        // read the method parameter types in the format "type1 type2"
        final String rawMethodParametersTypes = scanner.nextLine();

        final SupportedType[] methodParameterTypes = Arrays.stream(rawMethodParametersTypes.split(" "))
                .map(p -> SupportedType.valueOf(p.toUpperCase()))
                .toArray(SupportedType[]::new);

        final Optional<Method> selectedMethod = Arrays.stream(methods)
                .filter(m -> Arrays.equals(Arrays.stream(methodParameterTypes)
                        .map(SupportedType::getType).toArray(Class<?>[]::new), m.getParameterTypes()))
                .findAny();

        if (!selectedMethod.isPresent()) {
            return null;
        }

        final Method method = selectedMethod.get();

        // read method arguments in the format "arg1 arg2"
        final String rawMethodArgumentsLine = scanner.nextLine();
        final String[] rawMethodArguments = rawMethodArgumentsLine.split(" ");

        final int expectedLength = method.getParameterCount();
        if (rawMethodArguments.length != expectedLength) {
            return null;
        }

        Object[] methodArguments = new Object[expectedLength];
        for (int i = 0; i < expectedLength; ++i) {
            methodArguments[i] = methodParameterTypes[i].getConverter().apply(rawMethodArguments[i]);
        }

        try {
            return method.invoke(null, methodArguments);
        } catch (IllegalAccessException | InvocationTargetException e) {
            e.printStackTrace();
        }

        return null;
    }
}

我引入了一个枚举SupportedType来声明我们将要支持的类型以及用户在选择签名时可能遇到的类型。

@RequiredArgsConstructor
public enum SupportedType {
    STRING(String.class, s -> s),
    INT(int.class, Integer::valueOf);

    @Getter
    private final Class<?> type;

    @Getter
    private final Function<String, Object> converter;
}

以下是method(String, int)的输入输出示例

> method
> string int
> hello 5
< hello hello hello hello hello

method(String)

> method
> string
> hello
< hello