如何从 main 方法转换 POJO 变量的数据类型?任何API

发布于 2024-12-09 03:44:31 字数 113 浏览 1 评论 0原文

我们是否有任何 API 可以通过 main 方法更改 POJO 变量的数据类型?

有可用的 API 吗?如果是这样,请告诉我如何实施。

非常感谢你,

哈里什·拉杰。

Do we have any API by which we can change the data type of a variable of a POJO from main method?

any API available for that? If so, Please provide me how to implement it.

Thank you so much,

Harish Raj.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

邮友 2024-12-16 03:44:31

从字面上看,POJO:普通的旧 Java 对象,因此它通过方法公开其数据,如果 POJO 没有提供以您所需的格式/类型访问其数据的方法,您应该通过其方法访问它,然后执行转换。

现在,让我们深入了解一下,您有一个 java main 和一个 POJO,POJO 与您的 main 有何关系?它是直接引用的类还是通过其他方式访问它?

请澄清您的情况。

当然

public String convertToString(XMLGregorianCalendar cal)
{
  return "" + cal.getYear() + "/" + cal.getMonth() + "/" + cal.getDay();
}

,您可能需要对空值或值添加一些检查(开箱即用,无需多想,但应该可以解决问题)

Literally POJO: Plain Old Java Object, so it exposes it's datas via methods, if the POJO doesn't provide method to accesso its data in your desired format/type, you should access it via its methods and then perform conversion.

Now, let's dig a bit, you've got a java main, and a POJO, how's the POJO related to your main ? Is it a class referenced directly or you access it in some other ways ?

Please clarify your scenario.

Regards

public String convertToString(XMLGregorianCalendar cal)
{
  return "" + cal.getYear() + "/" + cal.getMonth() + "/" + cal.getDay();
}

of course you may need to add some checks on nulls or values (written out of the box without thinkin much, but shall do the trick)

粉红×色少女 2024-12-16 03:44:31

如何更改数据类型?您只能对数据进行类型转换,而不能转换数据类型。更改 POJO 变量的数据类型到底是什么意思?

How is it possible to change the data type? You can only type cast the data but cannot convert the data type. What do you really mean by changing the datatype of a variable of POJO.

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