Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的项目中使用 a ,我通过[PKG MEDIA]JTextPane等 代码添加一些标签。我想限制用户将它们复制并粘贴到.JTextPane
JTextPane
您应该覆盖Writer用于EditorKit跳过某些Element's内容。
Writer
EditorKit
Element's
为了防止粘贴,您可以DocumentFilter在最简单的情况下添加一个,但在某些情况下,粘贴会直接更改Document's结构,因此您应该覆盖Reader创建结构的那个。
DocumentFilter
Document's
Reader
作为提示使用“CTRL+V”的鼠标和按键事件使用和限制文本MouseEvent选择KeyEvent
MouseEvent
KeyEvent
或者您也可以使用:textPane.setTransferHandler(null);
textPane.setTransferHandler(null);
见文档