gpt4 book ai didi

java - Jsoup - 它需要多少 KB?

转载 作者:行者123 更新时间:2023-12-01 12:37:19 26 4
gpt4 key购买 nike

我有例如:

Document doc = Jsoup.connect("http://example.com/").get();
String title = doc.title();



Document doc = Jsoup.connect("http://example.com")
.data("query", "Java")
.userAgent("Mozilla")
.cookie("auth", "token")
.timeout(3000)
.post();




Response response1 = Jsoup.connect("http://example.com").method(Connection.Method.GET)
.data("name", "peksak")
.execute();

我如何查看这三个示例,他们从互联网上收到了多少以下知识库文章?

我在我的 Android 应用程序中使用它。对于互联网,我使用手机中的 WI-FI。

最佳答案

你可以简单地获取文档的长度并检查它的长度(以字节为单位):

Log.e("TAG", "Document size is " +doc.outerHtml().length());

第三个例子:

Log.e("TAG", "Document size is " +response1.body().length());

关于java - Jsoup - 它需要多少 KB?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25472770/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com