2011-04-14 21 views

回答

2

轉換到JRuby的時間和使用的strftime這樣的:

def format_date(date, date_format) 
    t = Time.at(date.time/1000) 
    return t.strftime(date_format) 
end 

Java日期時間方法給出1970年1月1日以來的毫秒數,Ruby時間以來的秒數。