import java.text.SimpleDateFormat;
import java.text.ParseException;
        SimpleDateFormat sdf=new SimpleDateFormat("E M dd HH:mm:ss z yyyy");
        try {
            long date=sdf.parse("Mon Dec 01 17:04:45 CST 2003").getTime();
        } catch (ParseException e) {
            e.printStackTrace();  //To change body of catch statement use Options | File Templates.
        }

解决方案 »

  1.   

    Date and Time Patterns
    Date and time formats are specified by date and time pattern strings. Within date and time pattern strings, unquoted letters from 'A' to 'Z' and from 'a' to 'z' are interpreted as pattern letters representing the components of a date or time string. Text can be quoted using single quotes (') to avoid interpretation. "''" represents a single quote. All other characters are not interpreted; they're simply copied into the output string during formatting or matched against the input string during parsing. The following pattern letters are defined (all other characters from 'A' to 'Z' and from 'a' to 'z' are reserved): Letter  Date or Time Component  Presentation  Examples  
    G  Era designator  Text  AD  
    y  Year  Year  1996; 96  
    M  Month in year  Month  July; Jul; 07  
    w  Week in year  Number  27  
    W  Week in month  Number  2  
    D  Day in year  Number  189  
    d  Day in month  Number  10  
    F  Day of week in month  Number  2  
    E  Day in week  Text  Tuesday; Tue  
    a  Am/pm er  Text  PM  
    H  Hour in day (0-23)  Number  0  
    k  Hour in day (1-24)  Number  24  
    K  Hour in am/pm (0-11)  Number  0  
    h  Hour in am/pm (1-12)  Number  12  
    m  Minute in hour  Number  30  
    s  Second in minute  Number  55  
    S  Millisecond  Number  978  
    z  Time zone  General time zone  Pacific Standard Time; PST; GMT-08:00  
    Z  Time zone  RFC 822 time zone  -0800  
      

  2.   

    to:nanman
    你给的代码执行后抛出一个异常:java.text.ParseException: Unparseable date: "Mon Dec 01 17:04:45 CST 2003"
      

  3.   

    SimpleDateFormat sdf = new SimpleDateFormat("E M dd HH:mm:ss z yyyy", Locale.US);
            try {
                long date = sdf.parse("Mon 12 01 17:04:45 CST 2003").getTime();
            } catch (ParseException e) {
                e.printStackTrace();  //To change body of catch statement use Options | File Templates.
            }
      

  4.   

    以下是我的测试代码:
    import java.util.*;
    import java.text.*;public class testdate {
      public testdate() {
      }  public static void main(String[] agrs){
         Date now = new Date();
         DateFormat defaultFormat = DateFormat.getDateInstance();
         DateFormat shortFormat = DateFormat.getDateInstance(DateFormat.LONG);
         DateFormat cFormat = DateFormat.getDateInstance(DateFormat.MEDIUM);
         DateFormat dFormat = DateFormat.getDateInstance(DateFormat.FULL);
         String daf = defaultFormat.format(now);
         String sho =  shortFormat.format(now);
         String c = cFormat.format(now);
         String d = dFormat.format(now);
         System.out.println(daf);
         System.out.println(sho);
         System.out.println(c);
         System.out.println(d);
      }
    }以下是运行结果:
    2003-12-5
    2003年12月5日
    2003-12-5
    2003年12月5日 星期五
      

  5.   

    import java.text.*;
    import java.util.*;public class MilDate{
      public static void main(String args[]){
      
    SimpleDateFormat sdFormat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss:SSS");
    Date currentTime = new Date();
    String myTime =  sdFormat.format(currentTime);
    System.out.println(myTime);
    }
    }