Ho provato a seguire questo tutorial: Recupero di dati dal Web
Ho provato a implementarlo su Android 3.0, l'ultima piattaforma per tablet, tuttavia, ottengo questo errore: " Impossibile risolvere l'host" www.anddev.org "Nessun indirizzo associato al nome host. "
Puoi controllare l'URL che ho usato solo per dimostrare che il file esiste. http://www.anddev.org/images/tut/basic/getdatafromtheweb/loadme.txt
Ho creato una classe privata e l'ho estesa con asynctask. Ecco il codice:
private class Downloader extends AsyncTask<String,Void,String>{
String myString = null;
@Override
protected String doInBackground(String... arg0) {
try{
URL myURL = new URL("http://www.anddev.org/images/tut/basic/getdatafromtheweb/loadme.txt");
URLConnection ucon = myURL.openConnection();
InputStream is = ucon.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
ByteArrayBuffer baf = new ByteArrayBuffer(50);
int current = 0;
while((current=bis.read())!=-1){
baf.append((byte)current);
}
myString = new String (baf.toByteArray());
}catch(Exception e){
myString = e.getMessage();
}
return myString;
}
@Override
protected void onPostExecute(String result){
tv.setText(result);
}
}
Qualsiasi aiuto là fuori sarebbe apprezzato.