Ciao a tutti,
ho un problema per quanto riguarda prelevare una icon da un url specificato, il metodo è il seguente:
e l'errore che vedo nel logCat è questo:
03-06 18:53:39.747: W/System.err(10364): java.io.FileNotFoundException: http://openweathermap.org/img/w/04n at com.android.okhttp.internal.http.HttpURLConnection Impl.getInputStream(HttpURLConnectionImpl.java:186 )
ho fatto un debug e la variabile is rimane a null, come mai? Pensavo fosse un problema di link, ma il link funziona.
ho un problema per quanto riguarda prelevare una icon da un url specificato, il metodo è il seguente:
Codice:
public byte[] getImage(String code) {
HttpURLConnection con = null ;
InputStream is = null;
try {
con = (HttpURLConnection) ( new URL(IMG_URL + code)).openConnection();
con.setRequestMethod("GET");
con.setDoInput(true);
con.setDoOutput(true);
con.connect();
// Let's read the response
is = con.getInputStream();
byte[] buffer = new byte[1024];
ByteArrayOutputStream baos = new ByteArrayOutputStream();
while ( is.read(buffer) != -1)
baos.write(buffer);
return baos.toByteArray();
}
catch(Throwable t) {
t.printStackTrace();
}
finally {
try { is.close(); } catch(Throwable t) {}
try { con.disconnect(); } catch(Throwable t) {}
}
return null;
}
03-06 18:53:39.747: W/System.err(10364): java.io.FileNotFoundException: http://openweathermap.org/img/w/04n at com.android.okhttp.internal.http.HttpURLConnection Impl.getInputStream(HttpURLConnectionImpl.java:186 )
ho fatto un debug e la variabile is rimane a null, come mai? Pensavo fosse un problema di link, ma il link funziona.