gpt4 book ai didi

java - 从 Activity 调用的其他类中的 Android AsyncTask

转载 作者:行者123 更新时间:2023-12-01 11:49:53 29 4
gpt4 key购买 nike

我有一个 MainActivity,在其中实例化一个类。该类包含基本数据和两个重要方法:GetRequestAccessUrl(params)getToken(string)(返回 AuthResponse)。

第一个方法运行良好,字符串在应用程序中生成并处理。然而,getToken方法涉及网络,因此禁止在主线程上运行,建议使用AsyncTask。后一种方法的实现如下:

public AuthResponse getToken(String code) {
if (secrete == null) {
throw new IllegalStateException("Application secrete is not set");
}

try {

URI uri = new URI(TOKEN_URL);
URL url = uri.toURL();

HttpURLConnection conn = (HttpURLConnection) url.openConnection();


try {
StringBuilder sb = new StringBuilder();
sb.append("client_id=" + clientId);
sb.append("&client_secret=" + secrete);
sb.append("&code=" + code);

conn.setRequestMethod("POST");
conn.setRequestProperty("Accept", "application/json");
conn.setDoOutput(true);

OutputStream os = conn.getOutputStream();


os.write(sb.toString().getBytes("UTF-8"));

if (conn.getResponseCode() != 200) {
throw new RuntimeException("Failed : HTTP error code : "
+ conn.getResponseCode());
}

Reader br = new InputStreamReader((conn.getInputStream()));
Gson gson = new Gson();
return gson.fromJson(br, AuthResponse.class);

} finally {
conn.disconnect();
}
} catch (Exception e) {
e.printStackTrace();
return null;
}
}

在 MainActivity 中,创建了整个类,调用了第一个方法,执行了一些操作,并且应该运行 getToken 方法。然而,我似乎完全陷入如何执行此操作,或如何创建关于此方法的(工作)AsyncTask 的问题。任何帮助表示赞赏。

最佳答案

new YourAsyncTask ().execute(code);


private class YourAsyncTask extends AsyncTask<String, Integer, Integer> {
protected Long doInBackground(String... codes) {
AuthResponse res = getToken(codes[0]);
doSthWithRes(res);
}

protected void onProgressUpdate(Integer... progress) {}

protected void onPostExecute(Integer result) {}
}

这可能会起作用。取决于您想用 AuthResponse 做什么。正如您所看到的,ASyncTask 更多的是在后台进行批处理。我更喜欢只使用标准线程。此外,您可能希望在 UIThread 中处理 AuthResponse。这是快速但肮脏的版本:

/* It would be better to create a subclass of Runnable and pass the Code in the constructor*/
final String code = "testcode";
//Create the new Thread
Thread t = new Thread(new Runnable() {
@Override
public void run() {
final AuthResponse res = getToken(code);
//RunOnUiThread is a method of the Activity
runOnUiThread(new Runnable() {
@Override
public void run() {
doSomethingWithResponse(res);
}
});
}
});
t.start()

关于java - 从 Activity 调用的其他类中的 Android AsyncTask,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28878826/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com