public static void main(String[] args) {
   ListMap<String, String> lmss = new ListMap<String, String>(ListMap.LINKED);
   lmss.put("cookie", "DedeUserID=2473346; SESSDATA=982b5546%2C1446802379%2C30c83e0a;");
   String json =
       Http.get(
               "http://org.to2mbn.bakaxl.hud.api.bilibili.com/x/feed/pull?ps=10&pn=1&type=1",
               1000,
               lmss)
           .getText();
   List<Video> ls =
       Strings.getAll(
               Jsons.getArray(json, "feeds"), "(\\{\"id\".*?\"fav_create_at\":\".*?\".*?)[^,]")
           .stream()
           .map(s -> Jsons.toNewObject(s, Video.class))
           .collect(Collectors.toList());
   ls.forEach(
       s ->
           System.out.println(
               "UP: "
                   + s.uname
                   + "\n头像地址: "
                   + s.avatar
                   + "\n视频标题: "
                   + s.title
                   + "\n视频分类: "
                   + s.typename
                   + "\n视频简介: "
                   + s.description
                   + "\n视频封面: "
                   + s.pic
                   + "\n视频地址: "
                   + s.link));
 }