簡體   English   中英

如何在wampserver中存儲數據

[英]How to store data in wampserver

public class activityresult2 extends Activity {

static public String txtOrder ="";

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_activityresult2);

    Bundle bundle = getIntent().getExtras();
    String strfnq = bundle.getString("Noodle quantity");
    String strfrq = bundle.getString("Rice quantity");
    String strfsq = bundle.getString("Fish quantity");
    String stricq = bundle.getString("Iced tea");
    Integer strsum = bundle.getInt("sum");

    boolean addNingc = bundle.getBoolean("ANI");
    boolean addRingc = bundle.getBoolean("ARI");
    boolean addFingc = bundle.getBoolean("AFI");
    boolean addTingc = bundle.getBoolean("AIT");
    boolean addmoneyc = bundle.getBoolean("AMY");

    Intent mIntent = getIntent();

    int sum = mIntent.getIntExtra("sum",strsum);
    TextView costtext = (TextView)findViewById(R.id.costtext);
    costtext.setText(String.valueOf(sum));

    TextView foodorders = (TextView) findViewById(R.id.foodordershow);
    foodorders.setText(getIntent().getExtras().getString("Quantity"));

    String addNdlThing = "";
    if (addNingc) { 
        addNdlThing = " with addition of ingredients";
    }

    String addRlThing = "";
    if (addRingc) {
        addRlThing = " with addition of ingredients";
    }

    String addSlThing = "";
    if ( addFingc) {
        addSlThing = " with addition of ingredients";
    }

     String addTeac = "";
    if ( addTingc ) {
        addTeac = " with addition of ingredients";
    }

    foodorders = (TextView) findViewById(R.id.foodordershow);
    if(strfnq.equals("") && strfrq.equals("") && strfsq.equals("")&& stricq.equals("")){
        txtOrder = "Sorry, You've not ordered any thing , please return to previous menu to order";
    }else if (!strfnq.equals("") && !strfrq.equals("") && !strfsq.equals("")&& stricq.equals("")) {
        txtOrder = "Thank you , You've ordered\n" + strfnq + " fried noodle" + addNdlThing +" and\n"+ strfrq
                + " fried rice" + addRlThing +" and\n" + strfsq + " Steam fish " + addSlThing + "and\n" + stricq + " Steam fish " + addTeac;
    } else {
        txtOrder = "Thank you , You've ordered\n";
        if(!strfnq.equals("")){
            txtOrder = txtOrder + strfnq + " fried noodle" + addNdlThing;
        }
        if(!strfrq.equals("")){
            txtOrder = txtOrder + strfrq + " fried rice" + addRlThing;
        }
        if(!strfsq.equals("")){
            txtOrder = txtOrder + strfsq + " Steam fish" + addSlThing;
        }
        if(!stricq.equals("")){
            txtOrder = txtOrder + stricq + " Iced Tea"+ addTeac;
        }
    }
    foodorders.setText(txtOrder);
}

在上一頁中選擇我的食物后,即activityresult1 ,我的食物顯示在此頁面( activityresult2 )中,在Textview foodorders 下......如果我按下此頁面上的按鈕,我希望顯示在foododers 的所有項目存儲在我的 wampserver 數據庫中,它是 mysql 數據庫,有誰知道怎么做

首先在localhost環境中配置wamp服務器。 為了配置 wamp 1) 獲取您機器的 ipaddress 2) 單擊 wamp 服務器中的 putonline 按鈕。 3)寫一個php腳本在mysql中存儲數據。 4)從你的手機調用那個php腳本( http://192.168.0.5/package name/php file name)

檢查此鏈接: http : //androidprogramz.blogspot.in/2012/07/connect-mysql-database-from-android.html

您不能直接從 android 應用程序連接 mysql 服務器。 您必須創建管理將數據存儲在 mysql 數據庫中的服務器端腳本。 您可以使用 http 連接將數據發送到腳本。 如果您使用 PHP,這些很棒的教程可以幫助您。

Android - PHP/MYSQL 教程

如何將 Android 與 PHP、MySQL 連接起來

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM