带参数的字符串到新对象

发布于 2024-11-07 13:19:33 字数 275 浏览 0 评论 0原文

如何从字符串创建对象的新实例?

我想这样做:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

缺⑴份安定 2024-11-14 13:19:33

您可以使用反射 API 实例化一个类。但是您需要完整的类名,简单的名称(= 没有构造函数)是不够的。

Class clazz = Class.forName("com.example.Event");
Constructor constructor = clazz.getConstructor(String.class);
Object instance = constructor.newInstance("hello");

将其分配给变量名称和类型存储在字符串中的变量是不可能的。实现此目的的通常模式是使用映射:

Map<String, Object> events = new HashMap<String, Object>();
events.put("event", event);

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.

Class clazz = Class.forName("com.example.Event");
Constructor constructor = clazz.getConstructor(String.class);
Object instance = constructor.newInstance("hello");

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:

Map<String, Object> events = new HashMap<String, Object>();
events.put("event", event);
淡看悲欢离合 2024-11-14 13:19:33

您可以使用 java.lang.Class 的 getConstructor 代替。

You can use java.lang.Class's getConstructor isnstead.

随梦而飞# 2024-11-14 13:19:33

以下是获取类实例的方法(以便您可以调用构造函数): 如何从 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 type

Or you can use reflectasm or reflections or commons-beanutils to make your life much more simple

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文