アプリケーションで 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);
}