JTextPane HTML 图像集成

发布于 2024-12-20 04:30:22 字数 615 浏览 2 评论 0原文

我有一个 JTextPane,我这样做:

HTMLEditorKit kit = new HTMLEditorKit();
HTMLDocument doc = new HTMLDocument();`

this.setEditorKit(kit);
this.setDocument(doc);

然后我这样做:

profilePictureSrc = "http://ola/profilePicture1.jpg";
chatContent ="<img src=\"" + profilePictureSrc + "\">";

其中 profilePictureSrc 是一个 URL 对象。

它有效,但我必须使用字符串而不是 URL (Java Hashtable put方法会减慢我的应用程序

我该怎么做?我是否必须将图片文件放在某处并使用相对路径来访问它们?非常感谢您的想法

最好的问候

I have a JTextPane and I do it :

HTMLEditorKit kit = new HTMLEditorKit();
HTMLDocument doc = new HTMLDocument();`

this.setEditorKit(kit);
this.setDocument(doc);

Then I do :

profilePictureSrc = "http://ola/profilePicture1.jpg";
chatContent ="<img src=\"" + profilePictureSrc + "\">";

Where profilePictureSrc is a URL Object.

It works but I must use a String instead of the URL (Java Hashtable put method slow down my application)

How Can I do that ? Do I have to put the picture files somewhere and use a relative Path to reach them ? Thank you very much for your ideas

Best Regards

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

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

发布评论

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

评论(1

旧故 2024-12-27 04:30:22

您可以将 url 对象转换为字符串。

字符串 urlstring = myurl.toString();

You can convert url objects to strings.

String urlstring = myurl.toString();

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