Android,从url获取文本在eclipse中工作正常,但在设备上没有

时间:2013-04-05 12:29:14

标签: java android

正如标题所示,这个代码在eclipse中工作正常,但是一旦我导出并尝试仅在设备上使用它,它就不会带来任何东西,只是返回null。

应该从网址读取文本并在文本视图中显示

我不知道我做错了什么,它可能相当简单,但我看不出来

public class nextEvent extends Activity implements OnClickListener {

String Event;
TextView eventText;
TextView titleText;

String HTML;

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.newevent);

    titleText = (TextView) findViewById(R.id.Title);
    eventText = (TextView) findViewById(R.id.Event);



            try { 
            getHTML();
        } catch (Exception e) {
            e.printStackTrace();
        }       
            eventText.setText("" + HTML);
    }


private void getHTML() throws ClientProtocolException, IOException 

{
    HttpClient httpClient = new DefaultHttpClient();
    HttpContext localContext = new BasicHttpContext();
    HttpGet httpGet = new HttpGet("http://masterzangetsu.eu/Apps/rocksoctest"); //URL!
    HttpResponse response = httpClient.execute(httpGet, localContext);
    String result = "";

    BufferedReader reader = new BufferedReader(new InputStreamReader(response.getEntity().getContent()));

    String line = null;
    while ((line = reader.readLine()) != null) {
        result += line + "\n";
        HTML = result;
    }

}


public void onClick(View v) {
    // TODO Auto-generated method stub


}

并且继承了xml

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scroller"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true" >

<RelativeLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/Title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:text="Upcoming Events"
        android:textAppearance="?android:attr/textAppearanceLarge" />

    <TextView
        android:id="@+id/Event"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/Title"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="44dp"
        android:text="Sever Event Update Failed" />

</RelativeLayout>

</ScrollView>

任何帮助都会很棒

2 个答案:

答案 0 :(得分:2)

您的模拟器可能运行的是比您的设备更旧的Android版本,并且您正在隐藏错误的try-catch块内的UI线程上执行网络调用;)旧的模拟器将正常工作。您的设备不允许这样做。使用AsyncTask {}进行网络呼叫。

为了说明这一点,请删除你的e.printStackTrace()并将一个Log.e()放在那里转储到LogCat。

答案 1 :(得分:1)

您正在Http上执行UI Thread来电。可能您使用的旧版Android (pre 3.0)设置了比您的设备(probably post 3.0)更高的模拟器。您应该使用ThreadAsyncTask来执行每个可能的阻止呼叫