有没有办法在 GWT 中设置小部件的 MIME 类型

发布于 2024-12-11 08:52:47 字数 145 浏览 2 评论 0原文

我有这样的场景,我想在基于单击事件的对话框中显示作为字符串的 xml。

但现在该字符串显示为连续字符串,看起来不像 xml 格式的字符串。

我想知道是否可以将任何小部件的 MIME 类型设置为 - text/xml,以便正确显示 xml 内容。

I have this scenario where I want to display the xml which is coming as a string in a dialog box based on a click event.

But now the string is showing as continuous string and does not look like a xml formatted string.

I was wondering if I could set the MIME type of any widget to say - text/xml so that the xml content is displayed properly.

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

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

发布评论

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

评论(1

我为君王 2024-12-18 08:52:47

您可以将输出包装在

 标记中,使其成为等宽字体,并按照您的 Java 字符串的指示进行格式设置,包括制表符、换行符以及您想要在其中添加的任何其他内容。示例如下:GXT UiBinder 演示代码

请参阅第 58 行的 getSource() 函数。他使用 SafeHtml 对象来构建格式良好的 XML 输出。在某些时候,我相信您必须将其包装在 g:HTMLPanel 或常规 div 中。

希望有帮助。

-tjw

You can wrap the output in a <pre> tag to make it monospace and formatted exactly as your Java string dictates with tabs, newlines, and whatever else you want to throw in there. An example is here: GXT UiBinder Demo Code.

See the getSource() function on line 58. He's using a SafeHtml object to build a nicely formatted XML output. At some point I believe you'll have to wrap this in a g:HTMLPanel, or a regular div.

Hope that helps.

-tjw

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