[ruby] Ruby에서 DateTime 및 Time으로 /에서 변환
Ruby에서 DateTime과 Time 객체를 어떻게 변환합니까?
답변
약간 다른 전환이 필요합니다.
변환하는 방법 Time
을 DateTime
다음과 같이 시간의 수업을 개정 할 수 있습니다 :
require 'date'
class Time
def to_datetime
# Convert seconds + microseconds into a fractional number of seconds
seconds = sec + Rational(usec, 10**6)
# Convert a UTC offset measured in minutes to one measured in a
# fraction of a day.
offset = Rational(utc_offset, 60 * 60 * 24)
DateTime.new(year, month, day, hour, min, seconds, offset)
end
end
날짜와 유사하게 조정하면 변환하게됩니다 DateTime
에 Time
.
class Date
def to_gm_time
to_time(new_offset, :gm)
end
def to_local_time
to_time(new_offset(DateTime.now.offset-offset), :local)
end
private
def to_time(dest, method)
#Convert a fraction of a day to a number of microseconds
usec = (dest.sec_fraction * 60 * 60 * 24 * (10**6)).to_i
Time.send(method, dest.year, dest.month, dest.day, dest.hour, dest.min,
dest.sec, usec)
end
end
현지 시간과 GM / UTC 시간 중에서 선택해야합니다.
위의 코드 스 니펫은 모두 O’Reilly의 Ruby Cookbook 에서 가져 왔습니다 . 그들의 코드 재사용 정책은 이것을 허용합니다.
답변
require 'time'
require 'date'
t = Time.now
d = DateTime.now
dd = DateTime.parse(t.to_s)
tt = Time.parse(d.to_s)
답변
루비 생태계의 상태에 대한 업데이트로서 Date
, DateTime
그리고 Time
지금은 다양한 클래스 사이의 변환 방법이있다. Ruby 1.9.2 이상 사용 :
pry
[1] pry(main)> ts = 'Jan 1, 2000 12:01:01'
=> "Jan 1, 2000 12:01:01"
[2] pry(main)> require 'time'
=> true
[3] pry(main)> require 'date'
=> true
[4] pry(main)> ds = Date.parse(ts)
=> #<Date: 2000-01-01 (4903089/2,0,2299161)>
[5] pry(main)> ds.to_date
=> #<Date: 2000-01-01 (4903089/2,0,2299161)>
[6] pry(main)> ds.to_datetime
=> #<DateTime: 2000-01-01T00:00:00+00:00 (4903089/2,0,2299161)>
[7] pry(main)> ds.to_time
=> 2000-01-01 00:00:00 -0700
[8] pry(main)> ds.to_time.class
=> Time
[9] pry(main)> ds.to_datetime.class
=> DateTime
[10] pry(main)> ts = Time.parse(ts)
=> 2000-01-01 12:01:01 -0700
[11] pry(main)> ts.class
=> Time
[12] pry(main)> ts.to_date
=> #<Date: 2000-01-01 (4903089/2,0,2299161)>
[13] pry(main)> ts.to_date.class
=> Date
[14] pry(main)> ts.to_datetime
=> #<DateTime: 2000-01-01T12:01:01-07:00 (211813513261/86400,-7/24,2299161)>
[15] pry(main)> ts.to_datetime.class
=> DateTime
답변
불행하게도 DateTime.to_time, Time.to_datetime
및 Time.parse
기능은 시간대 정보를 유지하지 않습니다. 변환하는 동안 모든 것이 현지 시간대로 변환됩니다. 날짜 산술은 여전히 작동하지만 원래 시간대로 날짜를 표시 할 수 없습니다. 그 맥락 정보는 종종 중요합니다. 예를 들어, 뉴욕에서 영업 시간 동안 수행 된 거래를 보려면 호주의 현지 시간대 (뉴질랜드보다 12 시간 빠름)가 아닌 원래 시간대로 표시되는 것을 선호합니다.
아래의 변환 방법은 해당 tz 정보를 유지합니다.
Ruby 1.8의 경우 Gordon Wilson의 답변을보십시오 . 오래되고 신뢰할 수있는 Ruby Cookbook에서 가져온 것입니다.
Ruby 1.9의 경우 약간 더 쉽습니다.
require 'date'
# Create a date in some foreign time zone (middle of the Atlantic)
d = DateTime.new(2010,01,01, 10,00,00, Rational(-2, 24))
puts d
# Convert DateTime to Time, keeping the original timezone
t = Time.new(d.year, d.month, d.day, d.hour, d.min, d.sec, d.zone)
puts t
# Convert Time to DateTime, keeping the original timezone
d = DateTime.new(t.year, t.month, t.day, t.hour, t.min, t.sec, Rational(t.gmt_offset / 3600, 24))
puts d
이것은 다음을 인쇄합니다
2010-01-01T10:00:00-02:00
2010-01-01 10:00:00 -0200
2010-01-01T10:00:00-02:00
시간대를 포함하여 전체 원래 DateTime 정보가 유지됩니다.
답변
Gordon Wilson 솔루션을 개선하는 방법은 다음과 같습니다.
def to_time
#Convert a fraction of a day to a number of microseconds
usec = (sec_fraction * 60 * 60 * 24 * (10**6)).to_i
t = Time.gm(year, month, day, hour, min, sec, usec)
t - offset.abs.div(SECONDS_IN_DAY)
end
시간대를 잃어버린 UTC로 같은 시간을 얻습니다 (불행히도)
또한 루비 1.9가 있다면 to_time
방법을 사용해보십시오.