使 JOptionPane 不区分大小写?

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

................................................ ...................................................... ...................................................... …………

java swing case-insensitive joptionpane
1个回答
5
投票

这并不是关于 JOptionPane,而是关于它完成工作后会发生什么:-)

比较两个字符串时使用

equalsIgnoreCase

if (a.equalsIgnoreCase(answer) && input.equals("instant")) {
            ^^^^^^^^^^
    ...
}
else if (a.equalsIgnoreCase(answer) && input.equals("generate")) {
                 ^^^^^^^^^^
    ...
}
© www.soinside.com 2019 - 2024. All rights reserved.