gpt4 book ai didi

javascript - 无法从互联网上获取特定数据

转载 作者:行者123 更新时间:2023-11-28 12:42:09 28 4
gpt4 key购买 nike

我在我的 Android 应用程序中遇到了一个问题,我获得了页面上的所有内容,但我只想要其中的一部分。这是我的部分代码:

spinner.setOnItemSelectedListener(new OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parentView, View selectedItemView, int position, long id) {
String text1 = spinner.getSelectedItem().toString().trim();

if (text1.equals("US Dollar - USD")) {
try {

Document doc = Jsoup.connect("http://www.google.com/finance/market_news?ei=_FLfUbD4JrG90QGf6wE").get();
String body = doc.body().text();
textView1.setText(body);

} catch (IOException e) {


}

这是我在申请中得到的:

http://oi41.tinypic.com/343kmwx.jpg

我想要在我的应用程序中的东西从“埃塞俄比亚航空公司......在 767 梦想飞机起火。

我需要做什么?我对 CSS、Javascript 或 HTML 没有经验。我也检查了整个谷歌。任何帮助将不胜感激。

最佳答案

这是工作代码。这将适用于这种特定情况。但是,您可能想要添加一些终点或调整您的起点,以便它适用于一般情况。

String [] words = body.split(" ");
int startPlace = 0;
for(int i = 0; i< words.length; i++){
if(words[i].equals("Ethiopian")){
startPlace = i-1; //Because of the "An" word before
}
}
String displayText = ""; // so += will work
for(int i = startPlace; i<words.length; i++){
displayText += words[i]+" ";
}
//Set the text to your textview.
TextView contentTextView = (TextView) findViewById(R.id.contentTextView);
contentTextView.setText(displayText);

关于javascript - 无法从互联网上获取特定数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17626108/

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