将字节转换为域对象

发布于 2024-10-20 19:47:16 字数 122 浏览 1 评论 0原文

一位 Java 开发人员刚刚问我以下问题:

如果我向您发送远程对象上所有方法调用的 byte[] - 您能够将其转换为域对象吗?

这可以做到吗?又如何呢?

感谢您提供任何有用的提示!

A Java developer just asked me the following:

If I send you byte[] for all the method calls on Remote Objects - will you be able to convert it to domain objects?

Can this be done? And how?

Thanks for any helpful tips!

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

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

发布评论

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

评论(1

我不吻晚风 2024-10-27 19:47:16

是的,你可以。它不会自动发生(即,就像在两端都实现了 IExternalized 一样),但是您没有理由不能在域对象上使用 fromBytes 静态方法,该方法接受一个 ByteArray 并从中构造对象。

Yes, you can. It won't happen automatically (ie, like it would if IExternalizable was implemented on both ends), but there's no reason you can't have, for example, a fromBytes static method on your domain objects which accept a ByteArray and construct the object from that.

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