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 start = 0; int end = 131; area.replaceRange (null, start, end);
しかし、JTextArea text のメソッドが動的であるため、これも廃止されているため、これは良くありません。
使用する:
int end = textArea.getLineEndOffset(0) textArea.replaceRange("", 0, end);