0

我一直在尝试基于固定区域下载 OSM Tiles 以供离线使用,并且代码已经运行了一段时间。

但是,我最近一直面临这个错误:

ERROR(8936): recvfrom failed: ECONNRESET (Connection reset by peer)

我只是想知道这是否是由于 OSM 的服务器问题,还是某种低效的编码约定导致了这个问题?

这些是我的下载代码:

for (int y = placeTopLeft.getYTile(); y <= placeBottomLeft.getYTile(); y++){
    for(int x = placeTopLeft.getXTile(); x <= placeBottomRight.getXTile(); x++){
        try {
            String urlStr = "http://a.tile.openstreetmap.org/"+ v +"/"+x+"/"+y+".png";
            URL url = new URL(urlStr);
            HttpURLConnection urlConnection = (HttpURLConnection) url.openConnection();
            InputStream in = new BufferedInputStream(urlConnection.getInputStream());
            File newFileDir = new File(Environment.getExternalStorageDirectory().toString() 
                                + "/test/"+ tID+ "/"+v+"/"+x);

            newFileDir.mkdirs();
            File newFile = new File(newFileDir, y+".png");
            OutputStream output = new FileOutputStream(newFile);
            int read;
            while ((read = in.read()) != -1) {
                output.write(read);
                output.flush();
            }
            urlConnection.disconnect();

        } catch (Exception e) {
            mNotificationHelper.cancelled();
            Log.e("URL::: ERROR", e.getMessage());
            e.printStackTrace();
        }
        loopCount++;
        publishProgress( (int) ((loopCount/totalLoopCount) * 100 ) );
    }
}

如果我遗漏了任何其他详细信息以便更清楚地展示此错误,请告诉我,谢谢!

4

1 回答 1

1

你看过之前拿到的瓷砖吗?它们是真正的 mapnik 瓷砖吗?当我使用 a.tile.openstreetmap.org、b.tile.openstreetmap.org 或 c.tile.openstreetmap.org 时,很快这些图块只显示 Open Street Map 徽标和消息“此应用程序因过度使用而被阻止.. ..我们的服务器”。

于 2013-01-06T10:11:38.017 回答