将火车头采集到的原网站时间转为lecms时间戳

houban 9月前 478

先用一个 标签 获取原来网站的发布时间,在建一个time标签,对获取到的那个标签,数据处理就好了,然后在发布模块增加字段 dateline字段,

火车头发布参考文章:https://www.lecms.cc/index.php?thread-55.htm

代码如下

using System;
using System.Collections.Generic;
using SpiderInterface;
class LocoyCode{
    /// <summary>
    /// 执行方法,不能修改类和方法名称。
    /// </summary>
    /// <param name="content">标签内容</param>
    /// <param name="response">页面响应,包含了Url、原始Html等属性</param>
    /// <returns>返回处理后的标签内容</returns>
    public string Run(string content,ResponseEntry response){
        // 在这里编写处理代码
        string dt = "yyyy-MM-dd";
        DateTime time = DateTime.ParseExact(content, dt, System.Globalization.CultureInfo.CurrentCulture);
        DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1));
        // 这里除10000000将时间戳调整为10位,如果要保留13位,那么将 10000000 改为 10000
        long t = (time.Ticks - startTime.Ticks) / 10000000;
        content = t.ToString();

        return content;
    }
}

最新回复 (4)
  • 小夜好坏 9月前
    引用 2
    感谢大佬
  • houban 9月前
    引用 3
    获取到的时间格式要和 string dt = "yyyy-MM-dd"; 里面的时间格式一样,如果你还采集到秒那些,就修改 "yyyy-MM-dd"这个时间格式
  • houban 5月前
    引用 4
    huahua23 大佬 请问下,按照您的步骤,采集出来的 截图https://p.sda1.dev/18/f67a68dcd17ce4913b0f0b833b04dbdd/4qTrf7HvzB.jpg 时间戳没显示是 ...
    肯定不正常,正常的是有时间戳的
  • huahua23 5月前
    引用 5
    houban 肯定不正常,正常的是有时间戳的
    可以了 , 谢谢
返回
发新帖