我正在创建一个应用程序,它将使用此页面https://gyp.ch/ecran/的div进行显示。
我试图找到一种使用Kotlin来获取ElementElementByID的方法,但由于JVM,我认为这是不可能的。
logo.setOnClickListener {
"https://gyp.ch/ecran/".httpGet().responseString{request,response,result ->
profs.text = result.get()
}
}
It just displays the result.get() so in this case the code source of the link above.
答案 0 :(得分:0)
由于您正在使用kotlin,因此可以轻松地将jsoup
添加到您的项目中。
implementation 'org.jsoup:jsoup:1.11.3'
简单示例-
Document doc = Jsoup.connect("https://gyp.ch/ecran/").get();
log(doc.title());
Elements allDivs = doc. getElementsByTag("div");
for (Element div : allDivs) {
div.text()
}