Android Time Set setFromString(Time t, String str)

Here you can find the source of setFromString(Time t, String str)

Description

Return true if ok.

License

Apache License

Declaration

public final static boolean setFromString(Time t, String str) 

Method Source Code

//package com.java2s;
/*//from  w ww .  j a  v a 2 s  . com
 * Copyright (C) 2011 The original author or authors.
 * 
 * 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 android.text.format.Time;

public class Main {
    /** Return true if ok. t is not changed otherwise. */
    public final static boolean setFromString(Time t, String str) {
        int year;
        int month;
        int day;
        try {
            int val = Integer.valueOf(str);
            day = val % 100;
            val /= 100;
            month = val % 100;
            year = val / 100;
            if (year >= 0 && year <= 9999 && month >= 1 && month <= 12
                    && day >= 1 && day <= 31) {
                t.set(day, month - 1, year);
                return true;
            }
        } catch (NumberFormatException e) {

        }
        return false;
    }
}