Synchronische Netzwerkanfragen mit Volley
F: Kann ich mit Volley synchrone Netzwerkanfragen in einem Hintergrundthread ausführen? Volley?
Begründung:
A: Ja, das ist möglich mit Volleys RequestFuture-Klasse.
Zum Beispiel, um eine synchrone JSON-GET-Anfrage zu stellen:
RequestFuture<JSONObject> future = RequestFuture.newFuture(); JsonObjectRequest request = new JsonObjectRequest(URL, new JSONObject(), future, future); requestQueue.add(request); try { JSONObject response = future.get(); // this will block } catch (InterruptedException | ExecutionException e) { // Exception handling }
Das obige ist der detaillierte Inhalt vonKann Volley synchrone Netzwerkanfragen in einem Hintergrundthread ausführen?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!