如何获得优酷视频里面的“播放次数”
如何获得优酷视频里面的“播放次数”分不多,希望能有高手指示 --------------------编程问答-------------------- 通过httpclient写程序采集啊 --------------------编程问答--------------------
具体操作是? --------------------编程问答-------------------- 如何实现?求学习 --------------------编程问答-------------------- 可以参考开源的 Crawler4J。
https://code.google.com/p/crawler4j/
http://hc.apache.org/httpcomponents-client-ga/ --------------------编程问答-------------------- 用httpclient模拟浏览器访问视频的页面,得到页面代码(是个字符串),在分割页面到播放次数
java.net.URL l_url = new java.net.URL("视频对应的url");
java.net.HttpURLConnection l_connection = (java.net.HttpURLConnection) l_url.openConnection();
l_connection.connect();
l_urlStream = l_connection.getInputStream();
java.io.BufferedReader l_reader = new java.io.BufferedReader(new java.io.InputStreamReader(l_urlStream));
String str=l_reader.readLine();
//分割返回的网页代码
补充:Java , Web 开发