我正在尝试为 Android 制作一个程序,并且我使用 okhttp 进行 json 调用。 我真的很想将我的回复返回到我正在创建的线程外部。我需要为异步调用创建线程,否则我将得到 NetworkOnMainThreadException。问题是我似乎无法在“onResponse”方法之外获取响应字符串,即使我的responseString是类中的全局变量。由于它是异步的,因此线程在返回之前不会及时运行以获取全局变量中的值。在返回我的responseString 值之前,如何确保获得响应?
这是我的代码:
public static String getUserProductCategoriesFromServer(Activity activity, final String UID, final String EXPIRY, final String CLIENT, final String ACCESSTOKEN)
{
activity.runOnUiThread(new Runnable()
{
@Override
public void run()
{
final OkHttpClient client = new OkHttpClient();
final Request request = new Request.Builder()
.url(JsonStorage.getJsonUserProductCategories())
.get()
.addHeader("access-token", ACCESSTOKEN)
.addHeader("client", CLIENT)
.addHeader("expiry", EXPIRY)
.addHeader("uid", UID)
.build();
client.newCall(request).enqueue(new Callback()
{
@Override
public void onFailure(Call call, IOException e)
{
}
@Override
public void onResponse(Call call, Response response) throws IOException
{
try
{
response = client.newCall(request).execute();
String json = response.body().string();
JSONObject jsonObject = new JSONObject(json);
JSONArray jsonData = (JSONArray) jsonObject.getJSONArray("user_product_category_names");
responseString = jsonData.toString();
Log.v("TEST1", jsonData.toString()); //RETURNS JSON :D
Log.v("TEST2", responseString); //RETURNS JSON :D
} catch (IOException | JSONException e) {
e.printStackTrace();
}
}
});
}
});
Log.v("TEST3", responseString); //RETURNS "NULL" :(
return responseString;
}
将结果从异步世界获取到同步(基于线程)的常见方法是使用 Futures。许多库都实现了这样的接口,例如番石榴。标准 java 的实现名为 CompletableFuture。它使用具有不同名称和签名的方法,但可以轻松实现适配器:
class CallbackFuture extends CompletableFuture<Response> implements Callback {
public void onResponse(Call call, Response response) {
super.complete(response);
}
public void onFailure(Call call, IOException e){
super.completeExceptionally(e);
}
}
然后您可以按如下方式使用它:
CallbackFuture future = new CallbackFuture();
client.newCall(request).enqueue(future);
Response response = future.get();
有了
Response
,您可以像在第一个变体中一样提取 responseString
。
yo lo que he usado (no se si sea mala practica) es usar injeccion de dependentencia con la instancia de la clase anterior ej:
if (response.isSuccessful()) {
claseAnterior.onResponse(response);
}