Android に問題があります。
それらを生成する URL からコンテンツを読み取り、読み取った文字列を分割して配列に入れることができる必要があります。さまざまな方法を使用しましたが、その文字列を読み取ることができません。どのようにできるのか?
これは私が現在使用している関数です (文字列「nn va」が引き続き表示されます)。
private void vaia () { // funzione vaia *******************************************************
try {
HttpClient httpclient = new DefaultHttpClient(); // Create HTTP Client
HttpGet httpget = new HttpGet(URL); // Set the action you want to do
HttpResponse response = httpclient.execute(httpget); // Executeit
HttpEntity entity = response.getEntity();
InputStream is = entity.getContent(); // Create an InputStream with the response
BufferedReader reader = new BufferedReader(new InputStreamReader(is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) // Read line by line
sb.append(line + "\n");
String resString = sb.toString(); // Result is here
Log.i("string letta", resString);
is.close(); // Close the stream
}
catch (Exception e) {
Log.i("Risultato eccezione","nn va");
//e.printStackTrace();
}
}
この時点の URL: http://www.innovacem.com/public/glace/leggiFoto.php (「vuoto」と書く必要があります)
ありがとう :)