码迷,mamicode.com
首页 > 其他好文 > 详细

用SimpleDateFormat求出哪天是星期几,如2008-11-11

时间:2018-09-23 16:39:37      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:except   www   dex   util   static   web   cep   tle   begin   

题目5: 巧妙利用SimpleDateFormat求出: 2008-11-11是星期几?(视频下载) (全部书籍)


import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;
public class Test {
    public static void main(String[] args) {
        SimpleDateFormat myFormatter = new SimpleDateFormat("yyyy-MM-dd");   
        Date mydate = null;
        try {
            mydate= myFormatter.parse("2008-11-11");
        } catch (ParseException e) {
            e.printStackTrace();
        }
        SimpleDateFormat formatter4 = new SimpleDateFormat("E");
        String mydate3=formatter4.format(mydate);
。。。。。。。。。。。。。。。。。。。。
详情请见:http://www.mark-to-win.com/index.html?content=JavaBeginner/javaUrl.html&chapter=JavaBeginner/JavaBeginner2_web.html#CalculateWhatDay

用SimpleDateFormat求出哪天是星期几,如2008-11-11

标签:except   www   dex   util   static   web   cep   tle   begin   

原文地址:https://www.cnblogs.com/mark-to-win/p/9692700.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!