带参数的字符串到新对象
如何从字符串创建对象的新实例?
我想这样做:
Event event = new Event("hello");
event.setName("nice!");
但只有
String object = "Event";
String object_variable_name = "event";
String object_params = "hello";
这可能吗?
How do i create a new instance of an object from a string?
I want to do this:
Event event = new Event("hello");
event.setName("nice!");
but only having
String object = "Event";
String object_variable_name = "event";
String object_params = "hello";
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用反射 API 实例化一个类。但是您需要完整的类名,简单的名称(= 没有构造函数)是不够的。
将其分配给变量名称和类型存储在字符串中的变量是不可能的。实现此目的的通常模式是使用映射:
You can instantiate a class with the reflection API. But you need the full class name, the simple name (= with no constructor) is not enough.
Assigning it to a variable where the variables name and type are stored in Strings is not possible. The usual pattern to implement this is to use a map:
您可以使用 java.lang.Class 的 getConstructor 代替。
You can use java.lang.Class's getConstructor isnstead.
以下是获取类实例的方法(以便您可以调用构造函数): 如何从 Java 中的类名获取类对象
现在,您可以使用 Beans API 来获取属性
name
的 getter。看到这个问题: Java Reflection:实例化具有指定类型的新对象或者您可以使用 reflectasm 或 反射 或 commons-beanutils 让您的生活更加简单
Here is how you get the class instance (so you can call the constructor): How to get a Class Object from the Class Name in Java
Now you can you the Beans API to get the getter for the property
name
. See this question: Java Reflection: Instantiate a new object with specified typeOr you can use reflectasm or reflections or commons-beanutils to make your life much more simple