Domanda

Sto lavorando a un'applicazione che ha bisogno di ottenere il sorgente di una pagina web da un link, e quindi analizzare il codice html da quella pagina.

Potreste darmi qualche esempio, o punti di partenza dove guardare per iniziare a scrivere un tale app?

È stato utile?

Soluzione

È possibile utilizzare HttpClient per eseguire un HTTP GET e recuperare la risposta HTML, qualcosa di simile a questo:

HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet(url);
HttpResponse response = client.execute(request);

String html = "";
InputStream in = response.getEntity().getContent();
BufferedReader reader = new BufferedReader(new InputStreamReader(in));
StringBuilder str = new StringBuilder();
String line = null;
while((line = reader.readLine()) != null)
{
    str.append(line);
}
in.close();
html = str.toString();

Altri suggerimenti

Vorrei suggerire jsoup .

Secondo il loro sito web:

Fetch homepage Wikipedia, analizzarlo a un DOM, e selezionare i titoli da Nella sezione news in una lista di elementi (campione in linea):

Document doc = Jsoup.connect("http://en.wikipedia.org/").get();
Elements newsHeadlines = doc.select("#mp-itn b a");

Per iniziare:

  1. Scarica la libreria di base barattolo jsoup
  2. Leggi il ricettario introduzione

Questa domanda è un po 'vecchio, ma ho pensato che dovrei postare la mia risposta, ora che DefaultHttpClient, HttpGet, ecc sono deprecati. Questa funzione dovrebbe ottenere e HTML tornare, dato un URL.

public static String getHtml(String url) throws IOException {
    // Build and set timeout values for the request.
    URLConnection connection = (new URL(url)).openConnection();
    connection.setConnectTimeout(5000);
    connection.setReadTimeout(5000);
    connection.connect();

    // Read and store the result line by line then return the entire string.
    InputStream in = connection.getInputStream();
    BufferedReader reader = new BufferedReader(new InputStreamReader(in));
    StringBuilder html = new StringBuilder();
    for (String line; (line = reader.readLine()) != null; ) {
        html.append(line);
    }
    in.close();

    return html.toString();
}
public class RetrieveSiteData extends AsyncTask<String, Void, String> {
@Override
protected String doInBackground(String... urls) {
    StringBuilder builder = new StringBuilder(100000);

    for (String url : urls) {
        DefaultHttpClient client = new DefaultHttpClient();
        HttpGet httpGet = new HttpGet(url);
        try {
            HttpResponse execute = client.execute(httpGet);
            InputStream content = execute.getEntity().getContent();

            BufferedReader buffer = new BufferedReader(new InputStreamReader(content));
            String s = "";
            while ((s = buffer.readLine()) != null) {
                builder.append(s);
            }

        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    return builder.toString();
}

@Override
protected void onPostExecute(String result) {

}
}

Se si dispone di uno sguardo qui o < a href = "http://htmlparser.sourceforge.net/" rel = "nofollow noreferrer"> qui , vedrete che non è possibile farlo direttamente con l'API di Android, è necessario un librairy esterna .. .

È possibile scegliere tra il 2 ecco hereabove se avete bisogno di un librairy esterna.

Chiamatelo come

new RetrieveFeedTask(new OnTaskFinished()
        {
            @Override
            public void onFeedRetrieved(String feeds)
            {
                //do whatever you want to do with the feeds
            }
        }).execute("http://enterurlhere.com");

RetrieveFeedTask.class

class RetrieveFeedTask extends AsyncTask<String, Void, String>
{
    String HTML_response= "";

    OnTaskFinished onOurTaskFinished;


    public RetrieveFeedTask(OnTaskFinished onTaskFinished)
    {
        onOurTaskFinished = onTaskFinished;
    }
    @Override
    protected void onPreExecute()
    {
        super.onPreExecute();
    }

    @Override
    protected String doInBackground(String... urls)
    {
        try
        {
            URL url = new URL(urls[0]); // enter your url here which to download

            URLConnection conn = url.openConnection();

            // open the stream and put it into BufferedReader
            BufferedReader br = new BufferedReader(new InputStreamReader(conn.getInputStream()));

            String inputLine;

            while ((inputLine = br.readLine()) != null)
            {
                // System.out.println(inputLine);
                HTML_response += inputLine;
            }
            br.close();

            System.out.println("Done");

        }
        catch (MalformedURLException e)
        {
            e.printStackTrace();
        }
        catch (IOException e)
        {
            e.printStackTrace();
        }
        return HTML_response;
    }

    @Override
    protected void onPostExecute(String feed)
    {
        onOurTaskFinished.onFeedRetrieved(feed);
    }
}

OnTaskFinished.java

public interface OnTaskFinished
{
    public void onFeedRetrieved(String feeds);
}

Uno degli altri SO Inserisci risposta mi ha aiutato. Questo non legge riga per riga; supposingly il file html aveva una linea nullo in mezzo. Come prerequisito aggiungere questo dipendenza da impostazioni del progetto "com.koushikdutta.ion: ioni: 2.2.1" implementare questo codice in AsyncTask . Se si desidera che la tornata -qualcosa -. di essere in thread UI, passarlo ad un'interfaccia comune

Ion.with(getApplicationContext()).
load("https://google.com/hashbrowns")
.asString()
.setCallback(new FutureCallback<String>()
 {
        @Override
        public void onCompleted(Exception e, String result) {
            //int s = result.lastIndexOf("user_id")+9;
            // String st = result.substring(s,s+5);
           // Log.e("USERID",st); //something

        }
    });
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top