0

我是 Android 编程新手,并试图制作一个通过 servlet 从数据库收集数据的应用程序。该应用程序一直在工作,直到我被迫重新安装 Eclipse。现在我似乎在从我的 servlet 检索数据时遇到问题。该应用程序符合并运行,但没有显示“轻数据”。AsyncTask 显然可能有助于解决这个问题(尽管我确实使用简单的输入应用按钮创建了一个主页并将其设置为我的新主要活动)。我非常感谢通过使用 AsyncTask 对我的代码提供特定的答案,谢谢。

连接servlet的代码:通过主页(新建主活动)按钮进入后应出现此页面:

package com.example.clearlight;

import android.os.Bundle;
import android.app.Activity;
import android.widget.TextView;
import android.widget.Toast;

import java.net.URL;

import org.apache.http.client.ResponseHandler;

import org.apache.http.client.methods.HttpGet;

import org.apache.http.impl.client.BasicResponseHandler;
import org.apache.http.impl.client.DefaultHttpClient;

import android.os.StrictMode;
import android.util.Log;


public class MainActivity extends Activity {

    TextView txt;

      @Override
      public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        /*StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
        StrictMode.setThreadPolicy(policy);*/


        setContentView(R.layout.relative);
        // Create a crude view - this should really be set via the layout resources but since its an example saves declaring them in the XML.

        /*LinearLayout rootLayout = new LinearLayout(getApplicationContext());
        txt = new TextView(getApplicationContext());
        rootLayout.addView(txt);
        setContentView(rootLayout);*/


        URL url = null;
        DefaultHttpClient httpclient = null;
        try {
            String registrationUrl = "http://10.0.2.2/SensorInfo/GetLightData?sensor=light";
            url = new URL(registrationUrl);

            HttpGet getRequest = new HttpGet(registrationUrl);
            ResponseHandler<String> handler = new BasicResponseHandler();
            httpclient = new DefaultHttpClient();
            // request data from server
            String result = httpclient.execute(getRequest, handler);
            Log.d("MyApp", "Data from server is "+ result);


          //Creating TextView Variable**********************************
            TextView text1 = (TextView) findViewById(R.id.text);

            //Sets the new text to TextView (runtime click event)//*******
            text1.setText("Light Data= " + result);

            Toast.makeText(this, "Light Data:" + result, Toast.LENGTH_SHORT).show(); //MESSAGE BOX
            //txtMessage.setText(String.valueOf(msg1) + "  " + String.valueOf(msg2));
        } catch (Exception ex) {
            ex.printStackTrace();
        }

      }
    }

显现:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.clearlight"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="16" />
    <uses-permission android:name="android.permission.INTERNET"></uses-permission>

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.example.clearlight.MainActivity"
            android:label="@string/app_name" >

        </activity>
         <activity
            android:name="com.example.clearlight.HomePage"
            android:label="@string/homepage" 
            android:parentActivityName="com.example.clearlight.MainActivity" >

            <!-- Moved the intent filter to HomePage -->
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <meta-data
                android:name="android.support.PARENT_ACTIVITY"
                android:value="com.example.clearlight.MainActivity" />
        </activity>
    </application>

</manifest>
4

2 回答 2

1

对于 android,最好不要在 Activity 中运行网络请求。当您尝试建立网络连接时,您可能会超时,或者加载大量数据,这会使您的代码“冻结”在那条线上。Activity 往往讨厌等待,因为那时屏幕没有响应。当这种情况持续很长时间时,android 将(可能强制)关闭您的应用程序。

就像您提到的,AsyncTask 是从网络连接加载数据的更好方法。AsyncTasks 或多或少像普通类一样工作,但有一些细节例外。这个链接应该让你快速了解这些细节。

对于你的错误:就像上面所说的 Vorrtex,检查你是否没有陷入错误。在您的 catch 语句中添加: Log.e("error",e.toString()); 并检查您的 LogCat 中是否没有显示 wall-o-red-text。

于 2013-03-16T22:36:06.600 回答
0

所以一般不建议从 UI Thread 执行任何网络连接。对于 Android < 3.0,它可以工作,但从 Android 3.0 开始,它是固定的并且不允许(抛出 NetworkOnMainThreadException)。

所以AsyncTask是非常好的选择,它非常适合用于这样的目的。简单地说,AsyncTask 的关键方法是doInBackground(),它在后台线程上运行(也用于日志运行操作,也适用于像您这样的人)并代表执行 Internet 连接的正确位置。

您与 Servlet 通信的代码应放入此方法中,结果您将以字符串形式返回响应。

然后将此字符串发送到onPostExecute(String result)方法,该方法在 doInBackground() 方法作为后台操作的结果完成时调用,在这里您将更新您的 UI(将响应设置为适当小部件的内容)。OnPostExecute() 已经在 UI 线程上运行并允许 UI 更新。

如果您有点困惑,最好阅读一些教程:

于 2013-03-16T22:36:42.317 回答