2013-10-01 109 views
0

你好人的計算器!從Eclipse中訪問本地MySQL數據庫Android模擬器

我有一個問題,我一直在嘗試修復幾天,但我們組中的任何人都無法修復它。這裏的問題:

的任務是「簡單」:設置Android設備(如運行在Eclipse中的仿真器)和本地建立MySQL數據庫之間的連接。目標是能夠運行查詢(保存在存儲在本地Web服務器(使用XAMPP)的PHP腳本中),以便Android設備能夠撤消所述數據庫的內容並將其顯示在TextView中。要做到這一點,下面的教程被用作幫助:http://www.youtube.com/watch?v=38HDyEUEpCw

不幸的是,我的設置不能正常工作。在繼續描述我的問題之前,這裏是我的代碼(如果我的解釋沒有任何意義,請不要擔心,我在最後總結了我的問題):

我在Eclipse中的設置是以下內容: MainActivity類,其中創建AsyncTask TestAusfuehren的實例,並設置Android佈局(activity_main.xml)中ID爲「Frage」的TextView字段。下面的代碼:

package com.example.androidtestdatabase; 


import android.app.Activity; 
import android.os.Bundle; 

import android.widget.TextView; 

public class MainActivity extends Activity { 
/** Called when the activity is first created. */ 

static TextView resultView; 

@Override 
public void onCreate(Bundle savedInstanceState) { 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    resultView = (TextView) findViewById(R.id.Frage); 
    new TestAusfuehren().execute(); 

// StrictMode.enableDefaults(); STRICT MODE ENABLED  
} 


} 

然後是的AsyncTask,它包含了棘手的部分:到Web服務器的連接幷包含了MySQL查詢的PHP腳本的執行。 這裏的問題是沒有文本返回到MainActivity類,它實際上應該返回查詢結果(例如對問題或簡單ID的答案,如「5」)。

package com.example.androidtestdatabase; 

import java.io.BufferedReader; 
import java.io.InputStream; 
import java.io.InputStreamReader; 

import org.apache.http.HttpEntity; 
import org.apache.http.HttpResponse; 
import org.apache.http.client.HttpClient; 
import org.apache.http.client.methods.HttpPost; 
import org.apache.http.impl.client.DefaultHttpClient; 
import org.json.JSONObject; 

import android.os.AsyncTask; 
import android.util.Log; 

public class TestAusfuehren extends AsyncTask<String, Void, String> { 

String result = ""; 
String sResult = ""; 

protected String doInBackground(String... params) { 

    InputStream isr = null; 

    try { 
     HttpClient httpclient = new DefaultHttpClient(); 
     MainActivity.resultView.setText("Verbindung wird hergestellt..."); 
     HttpPost httppost = new HttpPost("http://10.0.2.2:8080/php/AndroidTest.php"); // MY PHP SCRIPT ADDRESS 
     MainActivity.resultView.setText("Verbindung hergestellt!"); 
     MainActivity.resultView.setText("Antwort speichern..."); 

     HttpResponse response = httpclient.execute(httppost); 
     MainActivity.resultView.setText("Antwort gespeichert!"); 
     HttpEntity entity = response.getEntity(); 
     MainActivity.resultView.setText("Antwort wird verarbeitet..."); 
     isr = entity.getContent(); 
     BufferedReader reader = new BufferedReader(new InputStreamReader(
       isr, "UTF-8"), 8); 
     StringBuilder sb = new StringBuilder(); 
     String line = null; 
     while ((line = reader.readLine()) != null) { 
      sb.append(line + "\n"); 
     } 

     result = sb.toString(); 
     MainActivity.resultView.setText("Antwort verarbeitet!"); 

     JSONObject resultstring = new JSONObject(result); 
     sResult = resultstring.getString("question"); 

    } catch (Exception e) { 
     // TODO: handle exception 
     Log.e("log_tag", "Error Parsing Data " + e.toString()); 
    }finally{ 
     try{ 
      if(isr != null){ 
      isr.close();} 
     }catch(Exception e2){ 
      Log.e("log_tag", "Error Parsing Data " + e2.toString()); 
     } 
    } 
    return sResult; 

} 

@Override 
protected void onPostExecute(String result) { 
    super.onPostExecute(result); 
    MainActivity.resultView.setText("Ergebnis: "+ sResult); 
} 

} 

出於某種原因,該變量sResult,這是應該包含從數據庫中的文本行,是空的,我的Android的佈局的TextView的只顯示「Ergebnis:」沒有任何東西以下。

想了解一下我的佈局XML文件的樣子(即使我敢肯定的是,錯誤不是由佈局文件引起的)一個更好的主意:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
xmlns:tools="http://schemas.android.com/tools" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:paddingBottom="@dimen/activity_vertical_margin" 
android:paddingLeft="@dimen/activity_horizontal_margin" 
android:paddingRight="@dimen/activity_horizontal_margin" 
android:paddingTop="@dimen/activity_vertical_margin" 
tools:context=".MainActivity" > 

<RadioGroup 
    android:id="@+id/radioGroup1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_centerVertical="true" > 

    <RadioButton 
     android:id="@+id/radioButton3" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_marginRight="26dp" 
     android:layout_marginTop="18dp" 
     android:text="RadioButton" /> 

    <RadioButton 
     android:id="@+id/radio1" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="RadioButton" /> 

    <RadioButton 
     android:id="@+id/radio2" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:text="RadioButton" /> 

    <RadioButton 
     android:id="@+id/radio0" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:checked="true" 
     android:text="RadioButton" /> 

</RadioGroup> 

<TextView 
    android:id="@+id/Frage" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_above="@+id/radioGroup1" 
    android:layout_centerHorizontal="true" 
    android:layout_marginBottom="72dp" 
    android:textAppearance="?android:attr/textAppearanceLarge" /> 

<TextView 
    android:id="@+id/Kategorie" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_toLeftOf="@+id/Frage" 
    android:text="TextView" /> 

<Button 
    android:id="@+id/button1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:layout_marginBottom="55dp" 
    android:layout_marginLeft="50dp" 
    android:layout_toRightOf="@+id/radioGroup1" 
    android:text="Weiter" /> 

<Chronometer 
    android:id="@+id/chronometer1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignBottom="@+id/Frage" 
    android:layout_alignRight="@+id/button1" 
    android:text="Chronometer" /> 

<TextView 
    android:id="@+id/Unterkategorie" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignBaseline="@+id/Kategorie" 
    android:layout_alignBottom="@+id/Kategorie" 
    android:layout_centerHorizontal="true" 
    android:text="TextView" /> 

</RelativeLayout> 

最後但並非最不重要,我的PHP腳本(這是我在瀏覽器中測試成功,所以我可以向您保證,它的工作原理):

<?php 

$con = mysql_connect("localhost","root","mcf"); 
if (!$con) 
    { 
    die('Could not connect: ' . mysql_error()); 
    } 
mysql_select_db("mcf", $con); 

$result = mysql_query("SELECT question FROM Fragensatz1"); 

while($row = mysql_fetch_assoc($result)) 
    { 
$output[]=$row; 
    } 
print(json_encode($output)); 

mysql_close($con); 


?> 

真的很快概括:

目標: Android模擬器執行php腳本,該腳本包含MySQL查詢,並在本地webserver上找到並將查詢結果保存在變量中,然後才從Android佈局XML文件最終將其顯示在TextView中。

問題:即使與網絡服務器的連接和腳本的執行都工作,因此在Android應用程序的TextView字段中不顯示任何文本,但沒有將結果保存在變量sResult中。

我已經試過幾乎一切,但我的想法,這就是爲什麼我會SOOO感謝和感激,如果有人可以邏輯或編碼錯誤指出我的缺點!

感謝前程!

Yann G.PS:如果對我的解釋有任何疑問,例如:如果我沒有詳述足夠的細節或者留下一些無法解釋的信息,請隨時通知我!再次感謝!

PPS:Android LogCat沒有打印出任何錯誤,但我的猜測是這個問題與超時有關,因爲應用程序將運行3-4分鐘,並顯示「Antwort speichern ...」,然後突然切換到‘Ergebnis:’

這裏是什麼應用程序應該看起來像一個鏈接: http://i44.tinypic.com/2dt80og.png

與字符串TextView的‘問題’不運行AsyncTask後更改...

回答

0

我看到幾個關注領域。

1)像在this後建議爲xampp解析您的.php您需要將它們保存到/opt/xampp/htdocs(鏈接說/ opt/lampp/htdocs)。

2)您正試圖從UI Thread以外更新UI組件。該行

MainActivity.resultView.setText("Antwort gespeichert!"); MainActivity.resultView.setText("Antwort speichern...");

doInBackground()將使您的應用程序崩潰。如果這是某種處理消息,比如「保存...」,則應在調用new TestAusfuehren().execute();之前執行此操作,或者在TestAusfuehren中覆蓋onPreExecute();這兩個位置都駐留在UI Thread中。

+0

感謝您的快速回答! 我已經確保我的php腳本在htdocs文件夾中,正如我上面提到的PHP腳本應該沒問題,因爲用我的瀏覽器打開它們可以正常工作... 我會嘗試從代碼中刪除setTexts並看看它做了什麼! –

+0

如果我將它放在onPostExecute()方法中,setText會工作嗎? –

+0

是的,它並不需要靜態。 – Emmanuel

0

好吧,我想通了什麼問題是:

  1. 我是通過XAMPP運行的Apache服務器,但有一個Tomcat服務器運行得
  2. 本地主機ADRESS沒有使用正確的端口,我應該用80代替8080!

感謝您的支持和意見!

相關問題