Java JTextPane 斜体帮助
因此,我正在开发一个 Java GUI 应用程序,其中 JTextPane 中有斜体样式的文本,用户可以复制该文本。我需要的是用户能够将文本复制并粘贴到 Microsoft Word 文档中,而不会丢失斜体样式。目前,粘贴时一切都会变为纯文本。我该怎么做?
So I am working on a Java GUI application where there is text styled with italics in a JTextPane which the user can copy. What I need is the user to be able to copy and paste the text into a Microsoft Word document without losing the italic styling. At the moment it all changes to plain text when pasted. How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置适当的 EditorKit,例如 RTFEditorKit 或 HTMLEditorKit。
Set proper EditorKit e.g. RTFEditorKit or HTMLEditorKit.