java 优酷视频缩略图_优酷视频缩略图
該樓層疑似違規(guī)已被系統(tǒng)折疊?隱藏此樓查看此樓
public class VideoTest {
public static void main(String[] args) throws Exception{
String pic = getElementAttrById("s_sina", "href");
int local = pic.indexOf("pic=");
pic = pic.substring(local+4);
System.out.println("視頻縮略圖:"+pic);
}
private static String getElementAttrById(String id, String attrName)throws Exception{
Document doc = getURLContent();
Element et = doc.getElementById(id);
String attrValue = et.attr(attrName);
return attrValue;
}
private static Document getURLContent() throws MalformedURLException, IOException, UnsupportedEncodingException {
Document doc = Jsoup.connect("http://v.youku.com/v_show/id_XNTU1MDkyNDYw.html?f=19264429&ev=2")
.data("query", "Java")
.userAgent("Mozilla")
.cookie("auth", "token")
.timeout(3000)
.post();
return doc;
}
}
獲取到的是個地址 但我需要的是這張圖片 如何獲取到圖片呢?
求指導(dǎo)!!!!
總結(jié)
以上是生活随笔為你收集整理的java 优酷视频缩略图_优酷视频缩略图的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Win10:tensorflow 学习笔
- 下一篇: ac自动机 匹配最长前缀_别再暴力匹配字