sim

오늘 시스템에서 찾은 날짜 값이 Wed Jul 26 00:00:00 CST 2017인 날짜 오류가 발생했습니다.
분명히 내가 원하는 타입이 아니다. SimpleDateFormat를 통해 포맷을 해서 원하는 타입으로 변환할 수 있다
예를 들면 다음과 같습니다.
    
        //           
        Date  date =  Wed Jul 26 00:00:00 CST 2017; //     ,     
        SimpleDateFormat sdfYear = new SimpleDateFormat("yyyy");  //    
	SimpleDateFormat sdfMoth = new SimpleDateFormat("MM");   //    
	SimpleDateFormat sdfDay = new SimpleDateFormat("dd");   //    
	SimpleDateFormat sdfAll = new SimpleDateFormat("yyyy-MM-dd"); //    
	sdfYear.format(date); // 2017
	sdfMoth.format(date); // 7
	sdfDay.format(date);  // 26
	sdfAll.format(date);   // 2017-07-26
	            ,        。 
	
package com.test.util;

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

/**
 * 
 * @author zhuweishi
 *             
 */
public class RundomString {
	/**
	 * @param len      
	 * @return
	 *        
	 */
	public static String getNumberString(int len){
		String str = "";
		for (int i = 0; i  
  


좋은 웹페이지 즐겨찾기