admin
2021-03-06 7804263c6061aef813f0db27cb3046f746572606
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.yeshi.buwan.util.video;
 
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
 
public class IFengVideoParser {
 
    public static String getRealUrl(String data) {
        Document doc = Jsoup.parse(data);
        return doc.getElementsByTag("juhe").get(0).attr("src");
    }
 
}