Android Date String Parse fromSlDateTime(final String dateString, final String timeString)

Here you can find the source of fromSlDateTime(final String dateString, final String timeString)

Description

Constructs a Date from the provided date and time.

License

Apache License

Parameter

Parameter Description
dateString In the yy.MM.dd format
timeString In the HH:mm format

Return

A Date or null if failed to process the provided strings.

Declaration

public static Date fromSlDateTime(final String dateString,
        final String timeString) 

Method Source Code

//package com.java2s;
/*//from  w  w  w  . j  a v  a  2s  . co m
 * Copyright (C) 2009-2014 Johan Nilsson <http://markupartist.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Date;

public class Main {
    /**
     * Constructs a Date from the provided date and time.
     *
     * @param dateString In the yy.MM.dd format
     * @param timeString In the HH:mm format
     * @return A Date or null if failed to process the provided strings.
     */
    public static Date fromSlDateTime(final String dateString,
            final String timeString) {
        String dateTime = String.format("%s %s", dateString, timeString);
        Date date = null;
        SimpleDateFormat simpleDateFormat = new SimpleDateFormat(
                "dd.MM.yy HH:mm");
        try {
            date = simpleDateFormat.parse(dateTime);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return date;
    }
}

Related

  1. isValidDate(String sDate)
  2. getDateTimeFromString(String dateTimeString, String format)
  3. convertStringToDate(String date, String time)
  4. GetDate(String time)
  5. dateTimeToDateObj(String date, String time)
  6. convertTimeStumpToDate(String time)
  7. convertimeStumpToDate2(String time)
  8. convertDateTimeStrFormat(String dateStr, String pattern, String newPattern)
  9. convertStringToDate(String strDate, String pattern)