0

我在我的 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 Dreamliner fire”开始。

我需要做什么?我在 CSS、Javascript 或 HTML 方面没有经验。我也查遍了谷歌。任何帮助将不胜感激。

4

1 回答 1

0

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

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);
于 2013-07-13T01:39:23.820 回答