Questions tagged «unix-timestamp»

从特定日期到1970年1月1日的Unix纪元之间的秒数


11
将Unix时间戳转换为日期字符串
有没有一种快速,单一方法将Unix时间戳从Unix命令行转换为日期? date可能有效,但是指定每个元素(月,日,年,小时等)比较麻烦,而且我不知道如何使其正常工作。似乎有一种更简单的方法-我错过了什么吗?

6
如何将unix时间戳解析为time.Time
我正在尝试解析Unix 时间戳,但超出范围错误。这对我来说真的没有意义,因为布局正确(如Go文档中所示): package main import "fmt" import "time" func main() { tm, err := time.Parse("1136239445", "1405544146") if err != nil{ panic(err) } fmt.Println(tm) } 操场
126 go  time  unix-timestamp 

4
在熊猫数据框中将Unix时间转换为可读日期
我有一个带有unix时间和价格的数据框。我想转换索引列,以便以人类可读的日期显示它。 因此,例如,我在index列中有dateas 1349633705,但我希望它显示为10/07/2012(或至少10/07/2012 18:15)。 在某些情况下,这是我正在使用的代码以及我已经尝试过的代码: import json import urllib2 from datetime import datetime response = urllib2.urlopen('http://blockchain.info/charts/market-price?&format=json') data = json.load(response) df = DataFrame(data['values']) df.columns = ["date","price"] #convert dates df.date = df.date.apply(lambda d: datetime.strptime(d, "%Y-%m-%d")) df.index = df.date 如您所见,我在df.date = df.date.apply(lambda d: datetime.strptime(d, "%Y-%m-%d"))这里使用的 是无效的,因为我使用的是整数而不是字符串。我认为我需要使用,datetime.date.fromtimestamp但我不确定如何将其应用于整个df.date。 谢谢。



2
如何根据Unix中的时间戳对文件进行排序?[关闭]
关闭。这个问题是题外话。它当前不接受答案。 想改善这个问题吗? 更新问题,使其成为Stack Overflow 的主题。 9年前关闭。 改善这个问题 如何根据Unix中的时间戳对文件进行排序?我需要对文件进行排序,还需要基于它们创建的时间。

2
如何在javascript中将字符串转换为long?
我有一个毫秒级的时间戳,需要从String转换为long。Javascript有一个,parseInt但没有一个parseLong。那我该怎么做呢? 谢谢 编辑:稍微扩展一下我的问题:鉴于javascript显然没有long类型,我该如何对最初表示为字符串的long进行简单的算术运算?例如从另一个减去一个以获得时间增量?

11
获取时间戳格式的当前NSDate
我有一个获取当前时间并将其设置为字符串的基本方法。但是,如何获取自1970年以来的UNIX时间戳格式的当前日期和时间的格式? 这是我的代码: NSDate *currentTime = [NSDate date]; NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"hh-mm"]; NSString *resultString = [dateFormatter stringFromDate: currentTime]; 是否可以NSDateFormatter将'resultString'更改为时间戳?



12
检查字符串是否为unix时间戳
我有一个字符串,我需要找出它是否是unix时间戳,如何才能有效地做到这一点? 我通过Google找到了该线程,但恐怕并没有一个非常可靠的答案。(是的,我在前面提到的帖子中抄写了原始海报上的问题)。

6
反应-显示Firestore时间戳
我试图弄清楚如何在React应用程序中显示Firestore时间戳。 我有一个Firestore文档,其中的字段名为createdAt。 我正在尝试将其包含在输出列表中(在此处提取相关位,以便您不必通读整个字段列表)。 componentDidMount() { this.setState({ loading: true }); this.unsubscribe = this.props.firebase .users() .onSnapshot(snapshot => { let users = []; snapshot.forEach(doc => users.push({ ...doc.data(), uid: doc.id }), ); this.setState({ users, loading: false, }); }); } componentWillUnmount() { this.unsubscribe(); } render() { const { users, loading } = this.state; return ( …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.