gpt4 book ai didi

java - 将数据从在线 MySQL 数据库加载到 Android 应用程序

转载 作者:行者123 更新时间:2023-11-30 00:22:20 24 4
gpt4 key购买 nike

我正在使用此代码将数据从在线数据库加载到我的 Android 应用程序。我想知道我可以添加什么来使这段代码变得更好?有时进度对话框不断旋转并且永远无法获取数据,应用程序就会卡住,关于如何防止这种情况有什么想法吗?

    class LoadAllSections extends AsyncTask<String, String, String>
{

// make a progress dialog appear with the selected specifics
@Override
protected void onPreExecute() {
super.onPreExecute();
pDialog = new ProgressDialog(MainActivity.this);
pDialog.setMessage("Loading all sections, please wait");
pDialog.setIndeterminate(false);
pDialog.setCancelable(false);
pDialog.show();
}

// in the background run this code to retrieve data from the server
protected String doInBackground(String... args)
{
List<NameValuePair> params = new ArrayList<NameValuePair>();

JSONObject json = jParser.makeHttpRequest(url_Sections,"POST", params);
try
{
int success = json.getInt(TAG_SUCCESS);
sections = json.getJSONArray(TAG_SECTIONS);

if (success == 1)
{
for (int i = 0; i < sections.length(); i++)
{
JSONObject c = sections.getJSONObject(i);

section_id = c.getString(TAG_SECTION_ID);
section_name = c.getString(TAG_SECTION_NAME);
section_desc = c.getString(TAG_SECTION_DESC);
section_image = c.getString(TAG_SECTION_IMAGE);
section_valid = c.getString(TAG_SECTION_VALID);

HashMap <String,String> sectionmap = new HashMap<String,String>();

sectionmap.put(TAG_SECTION_ID, section_id);
sectionmap.put(TAG_SECTION_NAME, section_name);
sectionmap.put(TAG_SECTION_DESC, section_desc);
sectionmap.put(TAG_SECTION_IMAGE, section_image);
sectionmap.put(TAG_SECTION_VALID, section_valid);

sectionlist.add(sectionmap);
}
}
else
{
finish();
}
}
catch (JSONException e)
{
e.printStackTrace();
}
return null;
}

// disable the progress dialog and load data to the gridview
protected void onPostExecute(String file_url)
{
pDialog.dismiss();
adapter=new SectionAdapter(MainActivity.this,sectionlist);
SectionsGridView.setAdapter(adapter);
}
}

最佳答案

我想添加评论,但不被允许。没有足够的声誉:-(

  • 将 url_section 作为参数传递给 doInBackground,而不是将其设置为全局。
  • 我会将 httpRequest 放入 try catch block 中。
  • 如果 httpRequest 没有响应,您是否设置了超时?我会把它设置为60秒。我认为默认设置为 600 秒。
  • 为什么将 file_url 传递给 onPostExecute 而不是传递部分列表?
  • 看一下 AsyncTask。如果您不想在方法之间传递任何内容,也可以使用 Void。所以在你的情况下,AsyncTask 也会这样做。

关于java - 将数据从在线 MySQL 数据库加载到 Android 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23132715/

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