使用自定义字段处理程序的 Java Castor
我一直在尝试编写一个自定义字段处理程序,它在写入 XML 时返回 java.awt.Image 对象的哈希代码,并在将 XML 绑定到对象时基于此哈希代码检索图像。 由于某种原因,我无法让它工作; 据我所知,castor 只是实例化字段处理程序,然后不调用它的任何方法。
你能给我一个如何做到这一点的简单例子吗,因为我一定错过了一些简单的东西!
干杯,
皮特
I have been trying to write a custom field handler which returns the hash code of a java.awt.Image object when writing to XML and retrieves an image based on this hash code when binding the XML to an object. For some reason, I can't get this to work; castor, from what I can tell, simply instantiates the field handler and then doesn't call any of its methods.
Can you give me a quick example of how to do this because I must be missing something simple!
Cheers,
Pete
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
粘贴您的代码可能是个好主意。 无论如何,以下内容对我
和处理程序本身都
很好希望有帮助
Pasting your code can be a good idea. Anyway following works fine for me
And the handler itself
Hope that helps