【发布时间】:2011-05-24 04:59:10
【问题描述】:
我的应用引擎版本是 1.4.0。数据 dem.bil 位于 /war/dem.bil 目录下。这些是我获取数据 dem.bil 即 3M 的代码: 尝试{ URLConnection a = url.openConnection(); 输入流 b = a.getInputStream(); int len = a.getContentLength(); 如果 (len
我知道 1.4.0 版本将 URLFetch 响应限制增加到 32MB,但是当它进入 InputStream b = a.getInputStream();它的调试是“com.google.appengine.api.urlfetch.ResponseTooLargeException:来自 url localhost:8888/dem.bil 的响应太大。”。有人可以告诉我为什么吗?或者我的代码有问题吗?
【问题讨论】:
-
请勿重复发布;只需编辑您的问题。 a problem about urlfetch over 1M in app engine
标签: google-app-engine urlfetch