?? 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 + -