首页javajtextareaJava Swing - 如何剪切和粘贴在两个JTextArea之间...

Java Swing - 如何剪切和粘贴在两个JTextArea之间...

我们想知道如何剪切和粘贴在两个JTextArea之间。...
import java.awt.Color;

import javax.swing.JTextArea;
import javax.swing.text.JTextComponent;

public class Main {
  public static void main(String[] argv) throws Exception {
    JTextComponent c = new JTextArea();
    c.getCaretPosition();
    if (c.getCaretPosition() < c.getDocument().getLength()) {
      char ch = c.getText(c.getCaretPosition(), 1).charAt(0);
    }
    // Set the caret color
    c.setCaretColor(Color.red);
  }
}