golang爬取VAE+的新闻动态

Nuko · · 583 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

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)
    }
}


有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:Nuko

查看原文:golang爬取VAE+的新闻动态

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

583 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传