admin
2021-09-03 b41a6efe17ba61d150c5a9b7309651cebae54e0d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.hxh.spring.test;
 
import com.yeshi.buwan.videos.iqiyi.util.IqiyiUtil;
import com.yeshi.buwan.videos.sohu.SoHuUtil;
import com.yeshi.buwan.util.BeanUtil;
 
public class VideoUpdateTest {
 
    public static void main(String[] args) {
 
    }
 
    // @Test
    public void iqiyi() {
        IqiyiUtil iqiyiUtil = (IqiyiUtil) BeanUtil.getBean("iqiyiUtil");
        iqiyiUtil.updateAlbum("424141100");
    }
 
    // @Test
    public void sohu() {
        SoHuUtil soHuUtil = (SoHuUtil) BeanUtil.getBean("soHuUtil");
        soHuUtil.parseAll();
    }
 
 
    // @Test
    public void soHu() {
        SoHuUtil soHuUtil = (SoHuUtil) BeanUtil.getBean("soHuUtil");
        soHuUtil.parseAll();
    }
 
}