0

我的 jsoup 库有问题,当我使用 post 方法请求 URL 时,我无法下载完整的 HTML 文档,我只得到了一半的文档。我该如何解决这个问题。提前致谢。

Thread hilo = new Thread(new Runnable() {
                    @Override
                    public void run() {
                        try {
                            String url = "http://correos.es/comun/CodigosPostales/1010_s-CodPostal.asp";
                            Map<String, String> mapa = new HashMap<String, String>();
                            mapa.put("LlamarWebService", "false");
                            mapa.put("Prueba", "");
                            mapa.put("Ejecutando", "Direcciones");
                            mapa.put("Formu1", "FormLoc");
                            mapa.put("Formu2", "FormProvin");
                            mapa.put("CodPostal", numero);

                            String userAgent = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.17 (KHTML, like Gecko) Chrome/24.0.1312.60 Safari/537.17";
                            Connection conn = Jsoup.connect(url).data(mapa).userAgent(userAgent);
                            Document doc = conn.post();
                            Elements elemento = doc.select("div.txtNormal");
                            Log.e("", elemento.toString());

                        } catch (Exception e) {
                            Log.e("Error", e.toString());
                        }
                    }
                });
                hilo.start();
4

1 回答 1

0

您是否在 Eclipse Logcat 中编写 html 代码?您可能只看到文本的一部分,因为 Eclipse 限制了显示文本的长度。这篇文章可能会对你有所帮助。

戈尔达克

于 2013-03-10T20:42:08.357 回答