我将我从API请求返回的JSON解析的数据存储到Firebase数据库中。
submitButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String APIURL = "https://api.github.com/users/" + idInput.getText().toString();
String repoURL = "https://api.github.com/users/" + idInput.getText().toString() + "/repos";
new JSONTask().execute(APIURL);
//new JSONTask().execute(repoURL);
String parsedUserID = idInput.getText().toString();
SM.sendDataToProfile(parsedUserID);
viewPager.setCurrentItem(1);
//addUser(parsedUserID);
}
});
单击该按钮时,它会在APIURL上调用新的JSONTask(asynctask)。
JSONTask
public class JSONTask extends AsyncTask<String, String, String> {
@Override
// Any non-UI thread process is running in this method. After completion, it sends the result to OnPostExecute
protected String doInBackground(String... params) {
HttpURLConnection connection = null;
BufferedReader reader = null;
try {
// Pass in a String and convert to URL
URL url = new URL(params[0]);
connection = (HttpURLConnection) url.openConnection();
connection.connect();
InputStream stream = connection.getInputStream();
// Reads the data line by line
reader = new BufferedReader(new InputStreamReader(stream));
StringBuffer strBuffer = new StringBuffer();
String line = "";
while ((line = reader.readLine()) != null) {
strBuffer.append(line);
}
// If we are able to get the data do below :
String retreivedJson = strBuffer.toString();
return retreivedJson;
// When we are not able to retreive the Data
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (connection != null) {
// close both connection and the reader
connection.disconnect();
}
try {
if (reader != null) {
reader.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
return null;
}
它在另一个函数中进行解析。
我的问题是,正如你在我的setOnClickListener上看到的那样,我试图在两个不同的URL上创建两个JSONTask,因为第一个URL提供了用户的信息,第二个URL(repoURL)为我提供了用户信息#39; s存储库。我试图获取用户的回购信息并将其存储到数据库中,但似乎这是一种错误的方法。
在两个不同的URL上调用两个单独的AsyncTasks的正确方法是什么?
修改
private void addUserRepo(final String githubID, final String[] repoList) {
DatabaseReference users = databaseReference.child("users");
users.addListenerForSingleValueEvent(new ValueEventListener() {
@Override
public void onDataChange(DataSnapshot dataSnapshot) {
List list = new ArrayList<String>(Arrays.asList(repoList));
databaseReference.child("users").child(githubID).child("Repos").setValue(list);
}
@Override
public void onCancelled(DatabaseError databaseError) {
}
});
}
使用从
解析的数据 public void formatJSONArray(String results){
try {
JSONArray jsonArray = new JSONArray(results);
RepoInfo[] repoList = new RepoInfo[jsonArray.length()];
for(int i = 0; i < jsonArray.length(); i++){
JSONObject jsonObject=jsonArray.getJSONObject(i);
if(jsonObject.optString("name") != null) {
repoList[i].setRepoName(jsonObject.getString("name"));
//repoNameList.add(jsonObject.getString("name"));
}
if(jsonObject.optString("description") != null) {
repoList[i].setDescription(jsonObject.getString("description"));
//descriptionList.add(jsonObject.getString("description"));
}
if(jsonObject.optJSONObject("owner") != null){
JSONObject ownerObject=jsonObject.getJSONObject("owner");
if(ownerObject.optString("login")!=null) {
repoList[i].setOwner(ownerObject.getString("login"));
//userNameList.add(ownerObject.getString("login"));
}
}
}
} catch (JSONException jsonException){
}
}
答案 0 :(得分:1)
两个不同网址的响应肯定不会相似。所以你需要不同的解析方法。
一种懒惰的方法是为两个不同的网址使用两个不同的AsyncTasks
子类。
另一种方法是在asynctask中存储一个标志,指示它是处理用户还是回购。
public class JSONTask extends AsyncTask <String , String , String> {
boolean fetchingRepo;
@Override
protected String doInBackground (String... params) {
fetchingRepo = params[0].endsWith("/repos");
//other statements
}
现在在onPostExecute中:
if(fetchingRepo){
//parse one way
} else {
//parse another way
}