Java 版 (精华区)

如何写判断字串是否是日期类型的函数?

public boolean isDateString(String s) {
    java.text.DateFormat myDateFmt = 
                        java.text.DateFormat.getDateTimeInstance();
    try {
        if(myDateFmt.parse(s) != null) return true;
        else return false
    }
    catch (Exception Ex) {
        return false;
    }
}
[百宝箱] [返回首页] [上级目录] [根目录] [返回顶部] [刷新] [返回]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:3.219毫秒