|
|
|
@ -204,7 +204,7 @@ public class HttpUtils
|
|
|
|
|
String ret = "";
|
|
|
|
|
while ((ret = br.readLine()) != null)
|
|
|
|
|
{
|
|
|
|
|
if (ret != null && !ret.trim().equals(""))
|
|
|
|
|
if (ret != null && !"".equals(ret.trim()))
|
|
|
|
|
{
|
|
|
|
|
result.append(new String(ret.getBytes("ISO-8859-1"), "utf-8"));
|
|
|
|
|
}
|
|
|
|
|