Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to get Cool 6 Video through Java

2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article is about how to get cool 6 videos through Java. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Get Ku6 videos through JAVA, which is now available on many social websites. After entering the address of Ku6 videos, users can find the corresponding videos and thumbnails of videos, and some community websites can also get the duration of the videos.

For example, Sina Weibo has this function, when users enter the video URL, they can get the corresponding video address and video thumbnail.

View the code

Import java.io.IOException; import java.io.UnsupportedEncodingException; import java.net.MalformedURLException; import org.jsoup.Jsoup; import org.jsoup.nodes.Document; import org.jsoup.nodes.Element; import org.jsoup.select.Elements / * obtain Ku6 video * @ author sunlightcs * 2011-3-31 * http://hi.juziku.com/sunlightcs/ * / public class Ku6Test {private static String URL = "http://v.ku6.com/special/show_4027224/XFlByjLKGajkK_o-.html";" Public static void main (String [] args) throws Exception {Document doc = getURLContent (); / * * obtain video address * / Element flashEt = doc.getElementById ("outSideSwfCode"); String flash = flashEt.attr ("value") System.out.println ("video address:" + flash); / * get video thumbnails * / Element picEt = doc.getElementById ("plVideosList"); if (picEtages null) {Elements pics = picEt.getElementsByTag ("img") String pic = pics.get (0). Attr ("src"); System.out.println ("Video Thumbnail:" + pic); / * * get video duration * / Element timeEt = picEt.select ("span.review > cite") .first () String time = timeEt.text (); System.out.println ("Video duration:" + time);} else {String pic = doc.getElementsByClass ("s_pic"). First (). Text (); System.out.println ("Video Thumbnail:" + pic) }} / * get the content of the Ku6 page * / private static Document getURLContent () throws MalformedURLException, IOException, UnsupportedEncodingException {Document doc = Jsoup.connect (URL) .data ("query" "Java") .userAgent ("Mozilla") .cookie ("auth", "token") .timeout (3000) .post () Return doc;}}

To use a JAR package, the link address is as follows:

Http://jsoup.org/packages/jsoup-1.5.2.jar

Thank you for reading! This is the end of the article on "how to get Cool 6 videos through Java". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report