📄 limitedstyleddocument.java
字号:
import javax.swing.*; import javax.swing.text.*; import java.awt.Toolkit;public class LimitedStyledDocument extends DefaultStyledDocument { int maxCharacters; public LimitedStyledDocument(int maxChars) { maxCharacters = maxChars; } public void insertString(int offs, String str, AttributeSet a) throws BadLocationException { //This rejects the entire insertion if it would make //the contents too long. Another option would be //to truncate the inserted string so the contents //would be exactly maxCharacters in length. if ((getLength() + str.length()) <= maxCharacters) super.insertString(offs, str, a); else Toolkit.getDefaultToolkit().beep(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -