如何在JOptionPane.showMessageDialog中插入版权符号?

问题描述 投票:0回答:1

我想插入版权符号,而不是版权一词。

JMenu m2 = new JMenu("Help");
    JMenuItem item3=new JMenuItem("About");
    item3.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            JOptionPane.showMessageDialog(null, "this application helps to convert numeric values to given conditions \n Author: Prashanna Nepal \n Copyright Prashanna",null,JOptionPane.PLAIN_MESSAGE);
        }});
java joptionpane jmenuitem
1个回答
0
投票

您可以直接将其添加到文本中:

JOptionPane.showMessageDialog(null, "... © Prashanna", null, JOptionPane.PLAIN_MESSAGE);

由于符号不在您的键盘上,所以一种方法是从网络上的某些来源复制粘贴该符号(例如Wikipedia文章https://en.wikipedia.org/wiki/Copyright_symbol)。如果您在Windows上,也可以通过按住alt键并在小键盘上输入键码0 1 6 9来键入它。


0
投票

只需使用unicode。

"\u00a9"
© www.soinside.com 2019 - 2024. All rights reserved.