JTextArea
정규식을 사용하여 문자열을 분할하여 텍스트를 분할하려고 \n
하지만 작동하지 않으며 정규 표현식 \r\n|\r|n
과 다른 많은 조합으로 시도했습니다 . 암호:
public void insertUpdate(DocumentEvent e) {
String split[], docStr = null;
Document textAreaDoc = (Document)e.getDocument();
try {
docStr = textAreaDoc.getText(textAreaDoc.getStartPosition().getOffset(), textAreaDoc.getEndPosition().getOffset());
} catch (BadLocationException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
split = docStr.split("\\n");
}