【问题标题】:Getting DatePicker value to store into php mysql from Android获取 DatePicker 值以从 Android 存储到 php mysql
【发布时间】:2015-03-01 17:13:53
【问题描述】:

大家好!

我目前正在研究如何使用 android 的日期选择器将日期值放入我的 php mysql 中。我的计划是从日期选择器中获取数据,并将其值放入 mysql 中。出于某种原因,没有错误,但每次我将值“0000-00-00”输入到我的数据库中时,它只是将它输入到 mysql 中。以下是我的java android代码。

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.add_datetime);

    //setup strict mode policy
    StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
    StrictMode.setThreadPolicy(policy);

    timePicker = (TimePicker) findViewById(R.id.timePicker);
    timePicker.setIs24HourView(true);
    datePicker = (DatePicker) findViewById(R.id.datePicker);
    //lblTime = (TextView) findViewById(R.id.lblTime);
    btnAddTime = (Button) findViewById(R.id.btnAddTime);

    btnAddTime.setOnClickListener(new View.OnClickListener() {

        InputStream is = null;
        @Override
        public void onClick(View v) {

            //String time = lblTime.getText().toString();
            //String time = timePicker.getCurrentHour() + ":" + timePicker.getCurrentMinute() + ":" + "00";
            String date = datePicker.getYear() + "-" + datePicker.getMonth() + 1 + "-" + datePicker.getDayOfMonth();


            List<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>(1);

            nameValuePairs.add(new BasicNameValuePair ("date", date));

            try {

                //setting up the default http client
                HttpClient httpClient = new DefaultHttpClient();

                //setting up the http post method and passing the url in case
                //of online database and the ip address in case of localhost database
                //and the php file which serves as a link between the android app
                //and the database.
                HttpPost httpPost = new HttpPost("http://10.0.2.2/add_time.php");

                //passing the nameValuePairs inside the httppost
                httpPost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

                //getting the response
                HttpResponse response = httpClient.execute(httpPost);

                //setting up the entity
                HttpEntity httpEntity = response.getEntity();

                //setting up the content inside an input stream reader
                //lets define the input stream reader
                is = httpEntity.getContent();

                //Toast message if the data is successfully entered
                Toast.makeText(getApplicationContext(), "Date entered succesfully", Toast.LENGTH_LONG).show();
            }
            catch (ClientProtocolException e) {

                Log.e("ClientProtocol", "Log_tag");
                e.printStackTrace();
            }
            catch (IOException e) {
                Log.e("Log tag", "IOException");
                e.printStackTrace();

            }
        }

    });

以下是我的 php 代码:

<?php
error_reporting(E_ALL ^ E_DEPRECATED);

$con = mysql_connect('localhost', 'root', '');
mysql_select_db('testdb', $con);

$date = $_POST['date'];

mysql_query("Insert into datetable (date) values('{$date}')");


?>

如果有人能帮我解决这个问题,我将不胜感激!

【问题讨论】:

    标签: php android mysql date datepicker


    【解决方案1】:

    首先你没有打电话

     datePicker.init(year, month, day, dateSetListener);
    

    二是你还没有实现 OnDateChangedListener

      private DatePicker.OnDateChangedListener dateSetListener = new DatePicker.OnDateChangedListener() {
    
            public void onDateChanged(DatePicker view, int year, int monthOfYear,
                    int dayOfMonth) {
    
    // Use these values to pass....
    
            }
        };
    

    【讨论】:

      【解决方案2】:

      第 1 步:

      首先您需要在表格中填写日期字段数据类型为varchar(10)

      第 2 步:

       int month = f_date.getMonth();
       int crrntmonth = month + 1 ;
      String date = f_date.getYear() + "-" + crrntmonth + "-" + f_date.getDayOfMonth();
      

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 2012-07-26
        • 2015-05-03
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2012-01-22
        • 1970-01-01
        相关资源
        最近更新 更多