reader.close();
String data = sb.toString();
return data;
} catch (IOException e) {
throw new HttpException(e);
}
}
@Override
public InputStream asInputStream() throws HttpException {
try {
return request.getInputStream();
} catch (IOException e) {
throw new HttpException(e);
}
}
};