正在显示
1 个修改的文件
包含
1 行增加
和
1 行删除
| @@ -204,7 +204,7 @@ public class HttpUtils | @@ -204,7 +204,7 @@ public class HttpUtils | ||
| 204 | String ret = ""; | 204 | String ret = ""; |
| 205 | while ((ret = br.readLine()) != null) | 205 | while ((ret = br.readLine()) != null) |
| 206 | { | 206 | { |
| 207 | - if (ret != null && !ret.trim().equals("")) | 207 | + if (ret != null && !"".equals(ret.trim())) |
| 208 | { | 208 | { |
| 209 | result.append(new String(ret.getBytes("ISO-8859-1"), "utf-8")); | 209 | result.append(new String(ret.getBytes("ISO-8859-1"), "utf-8")); |
| 210 | } | 210 | } |
-
请 注册 或 登录 后发表评论