• 追加された行はこの色です。
  • 削除された行はこの色です。
#navi(../)
*JTextPaneで最終行に移動 [#rf478a7f]
>編集者:[[Terai Atsuhiro>terai]]~
作成日:2005-08-01~
更新日:&lastmod;
---
category: swing
folder: CaretPosition
title: JTextPaneで最終行に移動
tags: [JTextPane, JTextComponent, Caret, Document]
author: aterai
pubdate: 2005-08-01T02:22:59+09:00
description: CaretPositionを指定してJTextPaneの最終行に移動します。
image: https://lh4.googleusercontent.com/_9Z4BYR88imo/TQTId9wo-yI/AAAAAAAAAS0/GZbZiJfMOwI/s800/CaretPosition.png
---
* 概要 [#summary]
`CaretPosition`を指定して`JTextPane`の最終行に移動します。

#contents
#download(https://lh4.googleusercontent.com/_9Z4BYR88imo/TQTId9wo-yI/AAAAAAAAAS0/GZbZiJfMOwI/s800/CaretPosition.png)

**概要 [#zab9af94]
CaretPositionを指定してJTextPaneの最終行に移動します。
* サンプルコード [#sourcecode]
#code(link){{
Document doc = jtp.getDocument();
try {
  doc.insertString(doc.getLength(), text + "\n", null);
  jtp.setCaretPosition(doc.getLength());
} catch (BadLocationException ex) {
  ex.printStackTrace();
}
}}

#screenshot
* 解説 [#explanation]
上記のサンプルでは、`Document`に文字列と改行を追加した後、その`Document`の一番最後に`JTextComponent#setCaretPosition(int)`メソッドで`Caret`を移動しています。

**サンプルコード [#i47b5978]
 Document doc = jtp.getDocument();
 try{
   doc.insertString(doc.getLength(), str+"\n", null);
   jtp.setCaretPosition(doc.getLength());
 }catch(BadLocationException e) {}
- `JTextComponent`内での改行は常に`\n`のため`System.getProperties("line.separator")`で取得したり`\r\n`を考慮する必要はない
- 現在の`Caret`位置の行番号を取得する場合のサンプル
#code{{
public static int getLineAtCaret(JTextComponent component) {
  int caretPosition = component.getCaretPosition();
  Element root = component.getDocument().getDefaultRootElement();
  return root.getElementIndex(caretPosition) + 1;
}
}}

-&jnlp;
-&jar;
-&zip;
* 参考リンク [#reference]
- [[JScrollPaneのオートスクロール>Swing/AutoScroll]]
- [https://community.oracle.com/thread/1393939 Swing - Line Number in JTextPane]
- [https://stackoverflow.com/questions/1627028/how-to-set-auto-scrolling-of-jtextarea-in-java-gui How to set AUTO-SCROLLING of JTEXTAREA in Java GUI? - Stack Overflow]

**解説 [#mee5ef8f]
上記のサンプルでは、Documentに文字列と改行((JTextPaneでは改行は"\n"であり、System.getProperties("line.separator")としたり、"\r\n"にする必要はない))を追加した後、そのDocumentの一番最後にJTextComponent#setCaretPosition(int)メソッドでキャレットを移動しています。

Documentの最後ではなく、現在のキャレットの位置から、その行番号を取得したい場合は、以下のようにします。
 public static int getLineAtCaret(JTextComponent component) {
   int caretPosition = component.getCaretPosition();
   Element root = component.getDocument().getDefaultRootElement();
   return root.getElementIndex(caretPosition)+1;
 }

**参考リンク [#tea24622]
-[[JScrollPaneのオートスクロール>http://terai.xrea.jp/Swing/AutoScroll.html]]
-[[Java Forums - Line Number in JTextPane>http://forum.java.sun.com/thread.jspa?forumID=57&threadID=613385]]

**コメント [#f7f203e1]
* コメント [#comment]
#comment
#comment