IKVM 中的缓冲图像
对于要使用 IKVM 转换为 .NET 的 Java 项目,替换缺少的 BufferedImage 功能的最佳和/或最简单方法是什么?
运行应用程序时,我基本上会收到“cli.System.NotImplementedException
:BufferedImage”异常,否则运行正常。
What is the best and/or easiest way to replace the missing BufferedImage
functionality for a Java project I am converting to .NET with IKVM?
I'm basically getting "cli.System.NotImplementedException
: BufferedImage" exceptions when running the application, which otherwise runs fine.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IKVM 中的 AWT 代码相当容易阅读和编辑。 我建议您查找正在使用的引发异常的方法,然后实现它们。 我之前已经使用 IKVM 的 AWT 实现做过几次这样的操作,发现对于后台/服务器相关的功能来说很容易做到。 然而,如果您的应用程序是桌面应用程序,那么它的可用性就会低得多。
The AWT code in IKVM is fairly easy to read and edit. I'd recommend you look for the methods that you are using that throw that exception, and then implement them. I've done this several times before with IKVM's AWT implementation and found it easy to do for background/server related functions. Its much less usable if your app is a desktop app, however.