将图像粘贴到 JEditorpane
我有一个使用 text/html 的 JEditorPane,因此它可以显示图像。我可以使用我自己的方法(即使用 JFileChooser)插入图像,但是当涉及到粘贴图像时,它会变得有点混乱。我得到了一大堆 div 标签和 /
我不想要 - 我只需要
标签之间的内容即可!目前我只是使用
DefaultEditorKit.pasteAction();
- 我已经尝试过其他方法,但没有运气!
有人有同样的问题吗?和/或知道可行的解决方案?
预先感谢
安迪
I have a JEditorPane that uses text/html so it can display images. I can insert images using my own methods (i.e with a JFileChooser) but when it comes to pasting images, it gets a bit messy. I get a load of div tags and <!--StartFragment-->
/<!--EndFragment-->
which I do not want - I simply need whats inbetween the <img>
tags! Currently I am just using DefaultEditorKit.pasteAction();
- I have experiemted with other ways though, no luck!
Any one have the same problem? and / or Know of a working solution?
Thanks in Advance
Andy
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这可以帮助
http://java-sl.com/tip_local_images.html
您所需要做的就是插入标签使用正确的图像引用并将图像放置在本地缓存中。
May be this can help
http://java-sl.com/tip_local_images.html
All you need is to insert the tag with proper image reference and place the image in the local cache.