我在我的应用程序中使用 Jtextpane。我需要在 jtextpane 中添加一些标签,例如 [PKG-MEDIA]。我希望用户不要编辑这个标签,而他可以在 jtextpane 中编辑其他文本。
public static void main(String args[]) {
JFrame j = new JFrame("Hello!");
j.setSize(200, 200);
JTextPane k = new JTextPane();
k.setFont(new Font("Akshar Unicode Regular", Font.PLAIN, 17));
k.setText("this is a test code [PKG-MEDIA]. I want to make this tag [PKG-1234] not editable");
j.add(k);
j.setVisible(true);
j.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}