java获取百度网盘真实下载链接的方法

本文实例讲述了java获取百度网盘真实下载链接的方法。分享给大家供大家参考。具体如下:

目前还存在一个问题,同一ip在获取3次以后会出现验证码,会获取失败,感兴趣的朋友对此可以加以完善。

返回的List<Map<String, Object>>  中的map包含:fileName( 文件名),url(实链地址)

HttpRequest.java如下:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.RandomAccessFile;
import java.lang.reflect.Method;
import java.net.HttpURLConnection;
import java.net.URL;
public class HttpRequest {
 public static String getData(String u) throws Exception {
  String re="";
    URL url = new URL(u);
  HttpURLConnection httpURLConnection = (HttpURLConnection) url
    .openConnection();
  httpURLConnection.setRequestMethod("GET");
  httpURLConnection.setDoInput(true);
  httpURLConnection.setDoOutput(true);
  InputStream is = httpURLConnection.getInputStream();
  InputStreamReader isr = new InputStreamReader(is);
  BufferedReader bufferedReader = new BufferedReader(isr);
  String iL = "";
  while ((iL = bufferedReader.readLine()) != null) {
   re += iL + "\n";
  }
  return re;
 }
}

获取方法:

import java.net.URLEncoder;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.json.JSONArray;
import org.json.JSONObject;
import org.jsoup.Jsoup;
import org.jsoup.nodes.Document;
public class BaiduNetDisk {
 public static List<Map<String, Object>> getUrl(String url) throws Exception {
  List<String> fs_id = new ArrayList<String>();
  List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
  Document doc = Jsoup.connect(url).get();
  String html = doc.toString();
  int a = html.indexOf("{\"typicalPath");
  int b = html.indexOf("yunData.getCon");
  int sign_head = html.indexOf("yunData.SIGN = \"");
  int sign_foot = html.indexOf("yunData.TIMESTAMP");
  int time_head = html.indexOf("yunData.TIMESTAMP = \"");
  int time_foot = html.indexOf("yunData.SHARE_UK");
  int share_id_head = html.indexOf("yunData.SHARE_ID = \"");
  int share_id_foot = html.indexOf("yunData.SIGN ");
  String sign = html.substring(sign_head, sign_foot);
  sign = sign.substring(sign.indexOf("\"") + 1, sign.indexOf("\";"));
  String time = html.substring(time_head, time_foot);
  time = time.substring(time.indexOf("\"") + 1, time.indexOf("\";"));
  String share_id = html.substring(share_id_head, share_id_foot);
  share_id = share_id.substring(share_id.indexOf("\"") + 1,
    share_id.indexOf("\";"));
  System.out.println(share_id);
  html = html.substring(a, b);
  a = html.indexOf("{\"typicalPath");
  b = html.indexOf("};");
  JSONArray jsonArray = new JSONArray("[" + html.substring(a, b + 1)
    + "]");
  JSONObject jsonObject = jsonArray.getJSONObject(0);
  String uk = jsonObject.getString("uk");
  String shareid = jsonObject.getString("shareid");
  String path = URLEncoder.encode(jsonObject.getString("typicalPath"),
    "utf-8");
  jsonArray = new JSONArray("[" + jsonObject.getString("file_list") + "]");
  jsonObject = jsonArray.getJSONObject(0);
  jsonArray = new JSONArray(jsonObject.getString("list"));
  jsonObject = jsonArray.getJSONObject(0);
  String app_id = jsonObject.getString("app_id");
  if (jsonObject.getString("isdir").equals("1")) {
   String url1 = "http://pan.baidu.com/share/list?uk="
     + uk
     + "&shareid="
     + shareid
     + "&page=1&num=100&dir="
     + path
     + "&order=time&desc=1&_="
     + time
     + "&bdstoken=c51077ce0e0e313a16066612a13fbcd4&channel=chunlei&clienttype=0&web=1&app_id="
     + app_id;
   String fileListJson = HttpRequest.getData(url1);
   System.out.println(fileListJson);
   jsonArray = new JSONArray("[" + fileListJson + "]");
   jsonObject = jsonArray.getJSONObject(0);
   jsonArray = new JSONArray(jsonObject.getString("list"));
  }
  final int size = jsonArray.length();
  for (int i = 0; i < size; i++) {
   Map<String, Object> map = new HashMap<String, Object>();
   jsonObject = jsonArray.getJSONObject(i);
   String fileName = jsonObject.getString("server_filename");
   map.put("fileName", fileName);
   fs_id.add(jsonObject.getString("fs_id"));
   String fileInfo = HttpRequest
     .getData("http://pan.baidu.com/api/sharedownload?sign="
       + sign
       + "&timestamp="
       + time
       + "&bdstoken=c51077ce0e0e313a16066612a13fbcd4&channel=chunlei&clienttype=0&web=1&app_id=250528&encrypt=0&product=share&uk="
       + uk + "&primaryid=" + share_id + "&fid_list=%5B"
       + fs_id.get(i) + "%5D");
   JSONArray jsonArray2 = new JSONArray("[" + fileInfo + "]");
   JSONObject json_data = jsonArray2.getJSONObject(0);
   if (json_data.getString("errno").equals("0")) {
    jsonArray2 = new JSONArray(json_data.getString("list"));
    json_data = jsonArray2.getJSONObject(0);
    map.put("url", json_data.getString("dlink"));
   } else if (json_data.getString("errno").equals("-20")) {
    return null;
    // String getVerCode();
   } else {
    return null;
   }
   list.add(map);
  }
  return list;
 }
}

希望本文所述对大家的java程序设计有所帮助。

(0)

相关推荐

  • Java通过FTP服务器上传下载文件的方法

    对于使用文件进行交换数据的应用来说,使用FTP 服务器是一个很不错的解决方案. 关于FileZilla Server服务器的详细搭建配置过程,详情请见FileZilla Server安装配置教程.之前有朋友说,上传大文件(几百M以上的文件)到FTP服务器时会重现无法重命名的问题,但本人亲测上传2G的文件到FileZilla Server都没有该问题,朋友们可以放心使用该代码. FavFTPUtil.Java package com.favccxx.favsoft.util; import jav

  • java实现适用于安卓的文件下载线程类

    代码非常简单实用,这里就不多废话了,直接奉上源码 package android.mooc.tools; import java.io.BufferedInputStream; import java.io.File; import java.io.RandomAccessFile; import java.net.URL; import java.net.URLConnection; import android.util.Log; public class FileDownloadThrea

  • java实现文件上传下载和图片压缩代码示例

    分享一个在项目中用的到文件上传下载和对图片的压缩,直接从项目中扒出来的:) 复制代码 代码如下: package com.eabax.plugin.yundada.utils; import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import java.text.SimpleDateFormat; import java.util.Date; import java.util.

  • java结合HADOOP集群文件上传下载

    对HDFS上的文件进行上传和下载是对集群的基本操作,在<HADOOP权威指南>一书中,对文件的上传和下载都有代码的实例,但是对如何配置HADOOP客户端却是没有讲得很清楚,经过长时间的搜索和调试,总结了一下,如何配置使用集群的方法,以及自己测试可用的对集群上的文件进行操作的程序.首先,需要配置对应的环境变量: 复制代码 代码如下: hadoop_HOME="/home/work/tools/java/hadoop-client/hadoop" for f in $hadoo

  • Java实现给网站上传图片盖章的方法

    本文实例讲述了Java实现给网站上传图片盖章的方法.分享给大家供大家参考.具体如下: 最近无聊,上了一会校友录,觉的校友录的图片都会加入一个章,呵呵,自己也就做了一个,不过只适合jpg格式.发出来给大家研究研究.欢迎讨论! 很老的代码了 /************************************************ * <p>java对图片的操作(只能使用jpg)</p> * 对图片的签章<br> * 对图片的缩图<br> * <p

  • JavaEE实现文件下载

    我们先来看一个最简单的文件下载的例子: 复制代码 代码如下: package com.yyz.response;  import java.io.FileInputStream;  import java.io.IOException;  import java.io.OutputStream;  import javax.servlet.ServletException;  import javax.servlet.http.HttpServlet;  import javax.servlet

  • java编写Http服务器下载工具

    这个工具比较简单,用于配合另外一个工具进行文件传送,废话少说,上代码 import java.net.URL; import java.net.URLConnection; import java.io.File; import java.io.InputStream; import java.io.FileOutputStream; import java.io.FileNotFoundException; import java.io.IOException; import org.apac

  • JAVA比较两张图片相似度的方法

    本文实例讲述了JAVA比较两张图片相似度的方法.分享给大家供大家参考.具体如下: 摘要: importjava.awt.image.BufferedImage; importjava.io.File; importjavax.imageio.ImageIO; /***比较两张图片的相似度*@authorGuihua**/publicclassBMPLoader{//改变成二进制码 publicstaticString[][]getPX(Stringargs){int[]rgb=newint[3]

  • java实现从网上下载图片到本地的方法

    本文实例讲述了java实现从网上下载图片到本地的方法.分享给大家供大家参考.具体如下: import java.io.*; import java.net.MalformedURLException; import java.net.URL; public static void writeFile(String strUrl,String fileName){ URL url = null; try { url = new URL(strUrl); } catch (MalformedURLE

  • java编写ftp下载工具

    需要用到 java 写一个 ftp 的工具,因为只有一点点 java 基础,但是由于好几年不用,几乎算是不会了,只好一点点来搞,还好能捡起来. 不过因为是在 Linux 下使用 javac 编译,不是在 WIN 下使用 IDE 来做这些事情,所以在运行和编译上又费了一些时间,不过正是因为这样对 JAVA 的一些编译.运行的知识又了解了一些. 对于 ftp 下载工具,代码如下: 复制代码 代码如下: import java.io.File;   import java.io.FileInputSt

随机推荐