Jsoup连接501错误

时间:2012-05-16 01:27:23

标签: java android jsoup

如何与Jsoup建立连接以填充&am​​p;发送表格?

该网站与此类似:

          <form action="the.form" method="post"
                enctype="application/x-www-form-urlencoded"
                name="start_form"
                autocomplete="off">
             <input type="hidden" value="8F5EB4CD93CAB4E093EF7C1C733791FC" name="session" />
             <input type="text" value="" name="number" />
             <div class="right">
                <input type="submit" name="submit" value="Submit" />
             </div>
          </form>

我尝试了什么:

    Document doc = Jsoup.connect(DUMMY_URL).data("number", "123456789", "session", 
"6F80A198EC4B46B4848897A33ACAC3E8").header("Content-Type","application/x-www-form-urlencoded").userAgent("Mozilla").post();

结果:

Exception in thread "main" java.io.IOException: 501 error loading URL https://www.theurl.com
    at org.jsoup.helper.HttpConnection$Response.execute(HttpConnection.java:414)
    at org.jsoup.helper.HttpConnection$Response.execute(HttpConnection.java:391)
    at org.jsoup.helper.HttpConnection.execute(HttpConnection.java:157)
    at org.jsoup.helper.HttpConnection.post(HttpConnection.java:152)
    at Test.main(Test.java:17)

这里有什么问题?

1 个答案:

答案 0 :(得分:0)

我已经在THIS thread上回答了这个问题。

如果您有任何疑问,请询问。

相关问题