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.
を使用して、Jtextarea から行番号と列番号を取得できます。
int caretpos = textArea.getCaretPosition(); int row = textArea.getLineOfOffset(caretpos); int column = caretpos - textArea.getLineStartOffset(row);
行番号と列番号からキャレットの位置を取得するにはどうすればよいですか?
両方の質問について、回答が削除される可能性があります
ドキュメントは JTextComponents のモデルです
すべての行の int start / end を決定できます
Caretint start / end を決定することができますCaretListener
Caret
CaretListener
ビューからの変更を聞くためのものがありますDocumentListener
DocumentListener
入力の防止/変更用がありますDocumentFilter
DocumentFilter