golang爬取VAE+的新闻动态

栏目: Go · 发布时间: 6年前

package main

import (
    "fmt"
    "net/http"
    "github.com/bitly/go-simplejson"
    "io/ioutil"
    "os"
    "encoding/csv"
)
func check(e error) {
    if e!=nil{
        fmt.Println(e)
    }
}
func main() {
    news,_:=os.OpenFile("News.csv",os.O_WRONLY|os.O_CREATE, os.ModePerm)
    defer news.Close()
    w:=csv.NewWriter(news)
  url:="http://www.xusong.com/api/NEWS/getNews.json?page=1&pageSize=10"
    json,e:=http.Get(url)
    check(e)
    body,e:=ioutil.ReadAll(json.Body)
    res,_:=simplejson.NewJson([]byte(body))
    for i:=0;i<20;i++{
        cur:= res.Get("result").GetIndex(i)
        addTime,_:= cur.Get("addTime").String()
        content,_:=cur.Get("content").String()
        title,_:=cur.Get("title").String()
        id,_:=cur.Get("id").String()
        url:= "http://www.xusong.com/news/"+id
        w.Write([]string{title,content,url,addTime})
        fmt.Println("写入",i)
    }

    activity,_:=os.OpenFile("activity.csv",os.O_WRONLY|os.O_CREATE, os.ModePerm)
    defer activity.Close()
    ws:=csv.NewWriter(activity)
    urls:="http://www.xusong.com/api/NEWS/getCalendarList.json?page=1&pageSize=10"
    jsons,e:=http.Get(urls)
    check(e)
    bodys,e:=ioutil.ReadAll(jsons.Body)
    ress,_:=simplejson.NewJson([]byte(bodys))
    for i:=0;i<10;i++{
        cur:= ress.Get("result").Get("activityInfo").GetIndex(i)
        addTime,_:= cur.Get("endTime").String()
        content,_:=cur.Get("content").String()
        title,_:=cur.Get("title").String()
        id,_:=cur.Get("id").String()
        url:= "http://www.xusong.com/calendars/"+id
        ws.Write([]string{title,content,url,addTime})
        fmt.Println("写入",i)
    }

    party,_:=os.OpenFile("party.csv",os.O_WRONLY|os.O_CREATE, os.ModePerm)
    defer party.Close()
    wa:=csv.NewWriter(party)
    urla:="http://www.xusong.com/api/NEWS/getPartyList.json?page=1&pageSize=10"
    jsona,_:=http.Get(urla)
    bodya,e:=ioutil.ReadAll(jsona.Body)
    resa,_:=simplejson.NewJson([]byte(bodya))
    for i:=0;i<10;i++{
        cur:= resa.Get("result").Get("activityInfo").GetIndex(i)
        addTime,_:= cur.Get("startTime").String()
        content,_:=cur.Get("content").String()
        title,_:=cur.Get("title").String()
        id,_:=cur.Get("id").String()
        url:= "http://www.xusong.com/event/"+id
        wa.Write([]string{title,content,url,addTime})
        fmt.Println("写入",i)
    }
}

以上所述就是小编给大家介绍的《golang爬取VAE+的新闻动态》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

新物种爆炸

新物种爆炸

吴声 / 中信出版社 / 2017-7-30 / 58.00元

宝马为什么要重点发展共享汽车 Airbnb正试图成为内容和社交平台 不排队、不结账、没有收银员的颠覆传统超市 茑屋书店要打造全新生活方式 基于新的商业环境与技术条件的变化,必须会产生新的品类和商业模式,这就是新物种! 大数据与人工智能等技术正在创建新的商业话语体系,创建新的权力架构,引领第四新物种爆炸。商业规则正在快速发生变化,新的模式与业态层出不穷。 要么成为......一起来看看 《新物种爆炸》 这本书的介绍吧!

随机密码生成器
随机密码生成器

多种字符组合密码

Base64 编码/解码
Base64 编码/解码

Base64 编码/解码

HEX CMYK 转换工具
HEX CMYK 转换工具

HEX CMYK 互转工具