我对下面这段代码感到困惑:
// Get the content text
String contentText = null;
Header contentEncodingHeader = m_httpEntity.getContentEncoding();
final String contentEncodingValue = contentEncodingHeader != null ? contentEncodingHeader.getValue() : ""; // In my example, this is set to "gzip"
if (contentEncodingValue == "")
{
contentText = this.GetResponseContentText(inputStream, charset);
}
else if (contentEncodingValue == "gzip")
{
contentText = this.GetResponseContentText_GZip(inputStream, charset);
}
return contentText;
当我跨过代码行时,它按以下顺序执行:
1) if (contentEncodingValue == "")
{
3) contentText = this.GetResponseContentText(inputStream, charset);
}
2) else if (contentEncodingValue == "gzip")
{
contentText = this.GetResponseContentText_GZip(inputStream, charset);
}
4) return contentText;
甚至更奇怪的是,它甚至没有进入GetResponseContentText
功能。我真的很困惑。任何人都可以对此有所了解吗?
另外,如果我注释掉if语句,它可以正常工作(进入GetResponseContentText_GZip
函数)。
答案 0 :(得分:2)
通过字符串比较,您可以使用equals
代替==
if (contentEncodingValue.equals("")) {
...
}
else if (contentEncodingValue.equals("gzip")) {
...
}