RichTextString的equals()方法

问题
读取excel表格中的2个值并比较这2个值是否相等。
使用RichTextString的equals()方法来比较,发现明明2个值相等,结果还是返回false;debug了一下源码。

//OK lets do this in stages to return a quickly, first check the actual string
        boolean eq = ((field_1_charCount == other.field_1_charCount)
                && (field_2_optionflags == other.field_2_optionflags)
                && field_3_string.equals(other.field_3_string));
        if (!eq) return false;

发现在比较的时候,field_2_optionflags == other.field_2_optionflags这两个不相等。
方法上面还有一行注释(大概意思就是富文本很难进行比较)

/**
* Our handling of equals is inconsistent with compareTo. The trouble is because we don't truely understand
* rich text fields yet it's difficult to make a sound comparison.
*
* @param o The object to compare.
* @return true if the object is actually equal.
*/

说明富文本不单单比较的是内容还比较格式类型。之前开发的时候没有注意到这点,结果测试的时候,测出来了。

最后还是用toString()方法,转成字符串来进行比较。

你可能感兴趣的:(RichTextString的equals()方法)