日期:2014-05-20 浏览次数:20775 次
Document doc = new PlainDocument(){ @Override public void insertString(int offset, String s, AttributeSet as) throws BadLocationException { if(s.matches("[a-zA-z]*")) return; super.insertString(offset,s,as); } }; JTextArea text = new JTextArea(doc);