0

所以,我正在尝试解析一些看起来像这样的 xml:

<image size="extralarge">
http://...
</image>

但我无法将 attr 的值与字符串进行比较。这是我的代码:

    albumImage.setTextElementListener(new TextElementListener() {
        boolean imageGoodSize=true;
        @Override
        public void start(Attributes attributes) {
            Log.v(TAG_LASTFM, "Image #" + attributes.getValue("size") + "#");
            if(attributes.getValue("size")+"" == "extralarge" || attributes.getValue("size")+"" == "mega") {
                imageGoodSize=false;
                Log.w(TAG_LASTFM, "(imageGoodSize set to false");
            }
            else {
                imageGoodSize=true;
            }
        }

在日志中,它显示大小设置为“extralarge”,但是当我尝试将其与字符串“extralarge”进行比较时,imageGoodSize 未设置为 false。我究竟做错了什么 ?

这是日志:

06-21 01:52:30.463: V/ParseMusic_LastFM(32610): Image #extralarge#
4

1 回答 1

3

您不应该将 Java 中的字符串与==运算符进行比较。你需要使用.equals("extralarge")

==比较对字符串的引用,而.equals比较内容。

于 2012-06-20T23:58:26.773 回答