有没有办法以 HTML/XML 方式呈现 JAVA 组件/容器?

发布于 2024-10-07 07:56:49 字数 420 浏览 5 评论 0原文

我不知道正在为 java 开发工具,但我认为创建一个引擎来解释类似 xml/html 的字符串并将它们呈现为容器和组件对象树是一个好主意。示例:

<JFrame title="This is a GUI stand-alone App">
    <JPanel bgColor="blue">
        <JPanel align="center">Some Text</JPanel>
        <JButton align="bottom" value="click" />
    </JPanel>
</JFrame>

相当于:

...

啊,我不会在这里写几千行代码,你知道什么意思!

I'm not aware of tools that are being developed for java, but i think it would be a good idea to create an engine that would interpret xml/html-like strings and render them into a tree of container and component objects. Example:

<JFrame title="This is a GUI stand-alone App">
    <JPanel bgColor="blue">
        <JPanel align="center">Some Text</JPanel>
        <JButton align="bottom" value="click" />
    </JPanel>
</JFrame>

Would be equivalent to:

...

ah, I'm not going to write thousand lines of code here, you know what mean!!!

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

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

发布评论

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

评论(1

心如狂蝶 2024-10-14 07:56:49

通过在 Google 中搜索“XML To String”,您可以看到有专门用于此目的的框架:

我个人从未使用过它们,但你可以尝试一下。

By searching "XML To String" in Google, you can see there are frameworks dedicated to that :

I personnaly never used them, but you could give it a try.

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