在自定义控制台上监听打印文本事件?
我的 swing 应用程序中有一个重画自定义控制台,用于打印 xml 文本。我将所有 println 和 log info 语句重定向到此控制台。
我需要对 xml 字符进行转义,例如 & >、&我不想在使用 println 或日志信息的每个地方都执行此操作,而是想在打印文本之前在 jtextarea 上执行此操作。是否有任何此类侦听器或事件可以在自定义控制台上的打印操作之前对打印文本执行操作?
I have a repainting custom console in my swing application that prints xml text. I redirect all my println and log info statements to this console.
I need to unescape xml characters like & gt;, & lt;, etc. Instead of doing this in every place I use a println or log info, I want to do this unescaping on the jtextarea just before printing text in it. Is there any such listener or event to perform an action on the printing text just before the print action on the custom console?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以添加一个文档侦听器 文本文档区域 查找文本更改的事件,然后自己进行另一个更改(您将在侦听器中忽略该更改)以替换文本。
然而,更明智的方法可能是实现您自己的 文档过滤器,这样您将只修改插入/删除的文本,而不是监听事件。有关详细信息,请参阅实现文档过滤器。
You can add a document listener to the document of the text area to find the event of text changes, and then make another change yourself (which you will ignore inside your listeners) to replace the text.
The wiser way however is probably going to be to implement your own document filter so that instead of listenening to events, you will modify only the text which is inserted/removed. For more information see Implementing a Document Filter.