我在我的應用程序中使用Jtextpane。我需要在jtextpane中添加一些標籤,如 [PKG-MEDIA]。 我希望用戶不要編輯此標籤,而他可以在jtextpane中編輯其他文本。如何讓某些文本在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);
}