gpt4 book ai didi

java - 如何更改 JTextPane 的输入属性?

转载 作者:行者123 更新时间:2023-11-30 06:27:10 25 4
gpt4 key购买 nike

我使用了一个 JButton,当按钮被点击时,运行这些代码:

StyledDocument doc = (StyledDocument) textPane.getDocument(); 
MutableAttributeSet attr = new SimpleAttributeSet();
int p0=textPane.getSelectionStart();
int p1=textPane.getSelectionEnd();
if(p0!=p1){
StyleConstants.setForeground(attr, Color.RED);
doc.setCharacterAttributes(p0,p1-p0, attr,false);
}
textPane.getInputAttributes().addAttributes(attr);

p0到p1的字符确实变成了红色

但是我输入的字符还是黑的,不是红的:(

例子:

我输入“12345”并选择“234”。

新的 5 仍然是黑色的。

enter image description here

但是如果我输入“1234”并选择“234”。

新的 5 将是红色的。

即使没有“textPane.getInputAttributes().addAttributes(attr);”

enter image description here

最佳答案

问题是 getInputAttribute 反射(reflect)了当前插入符号位置的字符属性。

  1. 您选择“234”(插入符在 4 之后)--> InputAttributes 反射(reflect)了“234”的属性
  2. 您在“234”和当前的 InputAttributes(应该是相同的)上应用红色前景
  3. 您在“5”之后移动插入符号-->InputAttributes 已更新并反射(reflect)“5”的属性

现在,这里有一些代码可以激发您的灵感(这不是真正可操作的),您可能必须聆听插入符号的移动(如果不知道您要实现什么,则很难分辨):

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JTextPane;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;
import javax.swing.text.MutableAttributeSet;
import javax.swing.text.SimpleAttributeSet;
import javax.swing.text.StyleConstants;
import javax.swing.text.StyledDocument;

public class TestTextPane {

protected void initUI() {
JFrame frame = new JFrame(TestTextPane.class.getSimpleName());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
final JTextPane textPane2 = new JTextPane();
textPane2.setText("12345");
frame.add(textPane2);
JButton button = new JButton("Make it red");
button.addActionListener(new ActionListener() {

@Override
public void actionPerformed(ActionEvent e) {
final SimpleAttributeSet set = new SimpleAttributeSet();
StyleConstants.setForeground(set, Color.RED);
int p0 = textPane2.getSelectionStart();
int p1 = textPane2.getSelectionEnd();
if (p0 != p1) {
StyledDocument doc = textPane2.getStyledDocument();
doc.setCharacterAttributes(p0, p1 - p0, set, false);
}
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
textPane2.getCaret().setDot(textPane2.getText().length());
MutableAttributeSet inputAttributes = textPane2.getInputAttributes();
inputAttributes.addAttributes(set);
}
});

}
});
button.setFocusable(false);
frame.add(button, BorderLayout.SOUTH);
frame.setSize(600, 400);
frame.setVisible(true);
}

public static void main(String[] args) {
try {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (InstantiationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (UnsupportedLookAndFeelException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
SwingUtilities.invokeLater(new Runnable() {

@Override
public void run() {
TestTextPane t = new TestTextPane();
t.initUI();
}
});
}

}

关于java - 如何更改 JTextPane 的输入属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13586495/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com