Java: Cast String to primitive type dynamically

2019-08-03 04:27发布

I want to invoke a method by reflection in java.

I have on my hand the Method instance of the method I want to invoke (so I can get the types of its parameters), in addition, I have the values of these parameters as Strings.

I have an assumption that all the parameters MUST be primitives.

for example, if I want to invoke the following method:

public static double calc(int a, double b, String op){...}

I have the parameter as a String Array:

String[]: {"25", "34.45", "add"}

So, how can I convert this String array to array that contains (int, double, string)? I know that I can go over all the primitive types and try to parse the value in each type... Is there an easier way? something like "generic parse" method.

3条回答
爱情/是我丢掉的垃圾
2楼-- · 2019-08-03 05:12

You shouldn't go over all the primitive types and try to parse the value in each type.

You should get the type of each argument from the Method instance, and based on the type of the argument, call the appropriate method to transform the String into the required type: Double.valueOf() for a double (Double.TYPE), Integer.valueOf() for an int (Integer.TYPE), etc.

查看更多
我只想做你的唯一
3楼-- · 2019-08-03 05:21

You can use ConvertUtils from commons-beanutils, see [convert method](https://commons.apache.org/proper/commons-beanutils/javadocs/v1.9.2/apidocs/org/apache/commons/beanutils/ConvertUtils.html#convert(java.lang.String, java.lang.Class)). You need to implement the loop over the array of types however...

查看更多
【Aperson】
4楼-- · 2019-08-03 05:23

First your question IMHO has nothing to do with reflection. Primitive types cannot be instantiated using reflection. Reflection is for objects only.

how can I convert this String array to array that contains (int, double, string)?

You can't. An array in Java cannot contain different data types. A workaround would be to use List<Object>. The problem is that this will require casts later to retrieve the elements (with the possibility of getting a ClassCastException).

Is there an easier way? something like "generic parse" method.

I don't know about anything like this in the standard library. And I doubt there's any because what should "25" parsed to? int? long? float? BigInteger? This is up to developer, so you have to write this yourself.

查看更多
登录 后发表回答