如何将部分维基百科内容检索到Android App?

时间:2011-05-22 11:45:37

标签: android xml mediawiki wikipedia wikipedia-api

基本上,我想从维基百科中检索内容。 但我想直接在我的Android应用中显示它。 不是立即重定向到互联网浏览器,而是首先在我的应用程序中显示它。

目前,我设法通过http://en.wikipedia.org/w/api.php?action=parse&prop=text&format=xml&page=Bla_Bla_Bla请求维基百科API并仅获取主要内容。 因为我解析数据,我将使用WebView在Android中进行渲染。它成功渲染。但只对那些没有保护的文章......

如果它受Mona Lisa保护,则在WebView Android中无法正确呈现输出。

我想知道是否有人试图检索维基百科内容并将其显示在您的Android应用程序中,轻松而精美?

谢谢:)

4 个答案:

答案 0 :(得分:3)

我找到了答案。我想我过于复杂了。 我们实际上可以在不调用mediawiki API的情况下完美地检索内容。因为他们已经提供了移动界面。

我只需要加载http://en.m.wikipedia.org/wiki/并在后面添加主题。然后使用WebView查看它。显示完美尼斯。 :)

参考文献: http://en.wikipedia.org/wiki/Help:Mobile_access#Official_online_version

答案 1 :(得分:0)

我很可能会检索api调用的json版本(在请求uri中使用format = json)。您已经设法获取数据的检索(我猜是使用HttpPost或HttpGet),所以现在只需要检索正确的数据以便在您的应用程序中使用。

我目前正在编写一个从服务器检索JSON的应用程序,并且获取内容非常容易。只需实例化一个JSONObject并从服务器提供json结果,然后使用对象中的get方法检索数据。

简单示例:

JSONObject jsonObject = new JSONObject(responseTextFromServer);
String query = jsonObject.getString("query");
// and so on...

答案 2 :(得分:0)

// this is main activity code. I have added list of cars and when clicked it displays the wikipedia about it

package com.example.google_phones;

import androidx.appcompat.app.AppCompatActivity;

import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Adapter;
import android.widget.AdapterView;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;

import java.util.ArrayList;

public class MainActivity extends AppCompatActivity {
    ListView listView_google_phones;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        listView_google_phones= (ListView)findViewById(R.id.listView_phones);
        final ArrayList<String> arrayList= new ArrayList<>();
        arrayList.add("Google Pixel");
        arrayList.add("Google Pixel XL");
        arrayList.add("Google Pixel 2");
        arrayList.add("Google Pixel 2XL");
        arrayList.add("Google Pixel 3");
        arrayList.add("Pixel_3");



         ArrayAdapter arrayAdapter= new ArrayAdapter(this,android.R.layout.simple_expandable_list_item_1,arrayList);
        listView_google_phones.setAdapter(arrayAdapter);

        listView_google_phones.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {

                Intent intent = new Intent(MainActivity.this,wikipedia_search.class);
                intent.putExtra("Phone_name", listView_google_phones.getItemAtPosition(position).toString());
                startActivity(intent);
            }
        });
    }
}

// this is second activity code when user clicks on any one of the phones

package com.example.google_phones;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.webkit.WebView;
import android.webkit.WebViewClient;

public class wikipedia_search extends AppCompatActivity {
 WebView webView_wiki;
 private String search_string;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_wikipedia_search);

        webView_wiki= (WebView)findViewById(R.id.webView);
        webView_wiki.setWebViewClient(new WebViewClient());
        Bundle bundle=getIntent().getExtras();
        if(bundle!=null){
            webView_wiki.loadUrl("http://en.m.wikipedia.org/wiki/"+bundle.getString("Phone_name"));
        }

    }
}

答案 3 :(得分:0)

with np (id, name, value) as
     (select id, name, value
        from node_properties
      union 
      -- bike must appear in the output so generate a row if it doesn't exist.
      select null, 'bike', null 
      where not exists 
            (select null
               from node_properties
              where name = 'bike'
            )  
     )
select n.id      node_id 
     , n.name    node_name
     , np.name   properties_name
     , np.value  properties_value
  from np 
  left join nodes n on np.id = n.id
 order by n.id nulls first;