Java实现bt文件下载、制作、解析、磁力链接
首先torrent里面肯定携带的有一些信息,所以就需要我们来解析这些信息。
我们这里做多文件制作torrent,所以首先要针对每一个文件建一个实体类
- import java.util.List;
- public class Info {
- private String name;
- private byte[] pieces;
- private long piecesLength;
- private long length;
- private String md5sum;
- private List<Files> files;
- public Info() {
- }
- public Info(String name, byte[] pieces, long piecesLength, long length, String md5sum, List<Files> files) {
- super();
- this.name = name;
- this.pieces = pieces;
- this.piecesLength = piecesLength;
- this.length = length;
- this.md5sum = md5sum;
- this.files = files;
- }
- public String getName() {
- return name;
- }
- public void setName(String name) {
- this.name = name;
- }
- public byte[] getPieces() {
- return pieces;
- }
- public void setPieces(byte[] pieces) {
- this.pieces = pieces;
- }
- public long getPiecesLength() {
- return piecesLength;
- }
- public void setPiecesLength(long piecesLength) {
- this.piecesLength = piecesLength;
- }
- public long getLength() {
- return length;
- }
- public void setLength(long length) {
- this.length = length;
- }
- public String getMd5sum() {
- return md5sum;
- }
- public void setMd5sum(String md5sum) {
- this.md5sum = md5sum;
- }
- public List<Files> getFiles() {
- return files;
- }
- public void setFiles(List<Files> files) {
- this.files = files;
- }
而对于每一个File,又存在了一些信息,所以我们针对File建立一个实体类
- import java.util.List;
- public class Files {
- private long length;
- private String md5sum;
- private List<String> path;
- public Files() {
- }
- //getter and setter and tostring
- public long getLength() {
- return length;
- }
- public Files(long length, String md5sum, List<String> path) {
- super();
- this.length = length;
- this.md5sum = md5sum;
- this.path = path;
- }
- public void setLength(long length) {
- this.length = length;
- }
- public String getMd5sum() {
- return md5sum;
- }
- public void setMd5sum(String md5sum) {
- this.md5sum = md5sum;
- }
- public List<String> getPath() {
- return path;
- }
- public void setPath(List<String> path) {
- this.path = path;
- }
- }
而我们在制作torrent文件时,填写了很多信息,比如要web seeds等等。所以此时也需要一个实体类
- import java.util.Arrays;
- import java.util.List;
- import org.jeecgframework.core.util.StringUtil;
- public class BitTorrentInfo {
- public static List<String> keyList;
- static{
- String[] keys = {"announce", "announce-list", "creation date", "comment", "created by",
- "info", "length", "md5sum", "name", "piece length","pieces", "files", "path"};
- keyList = Arrays.asList(keys);
- }
- private String announce;
- private List<String> announceList;
- private long creationDate;
- private String comment;
- private String createBy;
- private Info info;
- public BitTorrentInfo() {
- }
- //getter and setter and tostring
- public BitTorrentInfo(String announce, List<String> announceList, long creationDate, String comment,
- String createBy, Info info) {
- super();
- this.announce = announce;
- this.announceList = announceList;
- this.creationDate = creationDate;
- this.comment = comment;
- this.createBy = createBy;
- this.info = info;
- }
- public static List<String> getKeyList() {
- return keyList;
- }
- public static void setKeyList(List<String> keyList) {
- BitTorrentInfo.keyList = keyList;
- }
- public String getAnnounce() {
- return announce;
- }
- public void setAnnounce(String announce) {
- this.announce = announce;
- }
- public List<String> getAnnounceList() {
- return announceList;
- }
- public void setAnnounceList(List<String> announceList) {
- this.announceList = announceList;
- }
- public long getCreationDate() {
- return creationDate;
- }
- public void setCreationDate(long creationDate) {
- this.creationDate = creationDate;
- }
- public String getComment() {
- return comment;
- }
- public void setComment(String comment) {
- this.comment = comment;
- }
- public String getCreateBy() {
- return createBy;
- }
- public void setCreateBy(String createBy) {
- this.createBy = createBy;
- }
- public Info getInfo() {
- return info;
- }
- public void setInfo(Info info) {
- this.info = info;
- }
- public void setValue(String key, Object value) throws Exception {
- if(!keyList.contains(key)){
- throw new Exception("not contains this key: " + key);
- }else{
- switch (key){
- case "announce":this.setAnnounce(value.toString());break;
- case "announce-list":this.getAnnounceList().add(value.toString());break;
- case "creation date":
- if(StringUtil.isNumeric(value.toString())){
- this.setCreationDate(Long.parseLong(value.toString()));
- }else{
- this.setCreationDate(0);
- }
- break;
- case "comment":this.setComment(value.toString());break;
- case "created by":this.setCreateBy(value.toString());break;
- case "length":
- List<Files> filesList1 = this.getInfo().getFiles();
- if(filesList1 != null){
- Files files = this.getInfo().getFiles().get(filesList1.size()-1);
- files.setLength(Long.parseLong(value.toString()));
- }else {
- this.getInfo().setLength(Long.parseLong(value.toString()));
- }
- break;
- case "md5sum":
- List<Files> filesList2 = this.getInfo().getFiles();
- if(filesList2 != null){
- Files files = this.getInfo().getFiles().get(filesList2.size()-1);
- files.setMd5sum(value.toString());
- }else {
- this.getInfo().setMd5sum(value.toString());
- }
- break;
- case "name":
- this.getInfo().setName(value.toString());
- break;
- case "piece length":
- this.getInfo().setPiecesLength(Long.parseLong(value.toString()));
- break;
- case "pieces":
- if(StringUtil.isNumeric(value.toString())){
- this.getInfo().setPieces(null);
- }else{
- this.getInfo().setPieces((byte[])value);
- }
- break;
- case "path":
- List<Files> filesList3 = this.getInfo().getFiles();
- Files files3 = filesList3.get(filesList3.size()-1);
- files3.getPath().add(value.toString());
- break;
- }
- }
- }
- }
解析实体类
- import java.io.File;
- import java.io.FileInputStream;
- import java.io.InputStream;
- import java.util.LinkedList;
- import java.util.List;
- public class BitTorrents {
- public static BitTorrentInfo parse(File btFile) throws Exception {
- return new BitTorrents().analyze(new FileInputStream(btFile));
- }
- public static BitTorrentInfo parse(String btFilePath) throws Exception {
- return new BitTorrents().analyze(new FileInputStream(btFilePath));
- }
- private BitTorrentInfo analyze(InputStream is) throws Exception {
- BitTorrentInfo btInfo = new BitTorrentInfo();
- String key = null;
- StringBuilder strLengthBuilder = new StringBuilder();
- int tempByte;
- while ((tempByte = is.read()) != -1) {
- char temp = (char) tempByte;
- switch (temp) {
- case 'i':
- StringBuilder itempBuilder = new StringBuilder();
- char iTemp;
- while ((iTemp = (char) is.read()) != 'e') {
- itempBuilder.append(iTemp);
- }
- btInfo.setValue(key, itempBuilder.toString());
- break;
- case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9':
- strLengthBuilder.append(temp);
- break;
- case ':':
- int strLen = Integer.parseInt(strLengthBuilder.toString());
- strLengthBuilder = new StringBuilder();
- byte[] tempBytes = new byte[strLen];
- is.read(tempBytes);
- if (key != null && key.equals("pieces")) {
- btInfo.setValue(key, tempBytes);
- } else {
- String tempStr = new String(tempBytes);
- if (BitTorrentInfo.keyList.contains(tempStr)) {
- key = tempStr;
- if (tempStr.equals("announce-list")) {
- btInfo.setAnnounceList(new LinkedList<String>());
- } else if (tempStr.equals("info")) {
- btInfo.setInfo(new Info());
- } else if (tempStr.equals("files")) {
- btInfo.getInfo().setFiles(new LinkedList<Files>());
- btInfo.getInfo().getFiles().add(new Files());
- } else if (tempStr.equals("length")) {
- List<Files> tempFiles = btInfo.getInfo().getFiles();
- if (tempFiles != null) {
- if (tempFiles.isEmpty() || tempFiles.get(tempFiles.size() - 1).getLength() != 0) {
- tempFiles.add(new Files());
- }
- }
- } else if (tempStr.equals("md5sum")) {
- List<Files> tempFiles = btInfo.getInfo().getFiles();
- if (tempFiles != null) {
- if (tempFiles.isEmpty() || tempFiles.get(tempFiles.size() - 1).getMd5sum() != null) {
- tempFiles.add(new Files());
- }
- }
- } else if (tempStr.equals("path")) {
- List<Files> tempFilesList = btInfo.getInfo().getFiles();
- if (tempFilesList.isEmpty()) {
- Files files = new Files();
- files.setPath(new LinkedList<String>());
- tempFilesList.add(files);
- } else {
- Files files = tempFilesList.get(tempFilesList.size() - 1);
- if (files.getPath() == null) {
- files.setPath(new LinkedList<String>());
- }
- }
- }
- } else {
- btInfo.setValue(key, tempStr);
- }
- }
- break;
- }
- }
- return btInfo;
- }
- public static void main(String[] args) throws Exception {
- BitTorrentInfo info=parse("E://xx/xx.torrent");
- System.out.println("信息:"+info.getAnnounce()+"\t"+info.getComment()+"\t"+info.getCreateBy()+"\t"+GetDate.LongConvetDateTime(info.getCreationDate()));
- Info it=info.getInfo();
- System.out.println("信息:"+it.getName()+"\t"+it.getPiecesLength()+"\t"+it.getLength()+"\t"+it.getMd5sum()+"\t"+it.getPieces());
- if(info.getAnnounceList().size()>0){
- for(String str:info.getAnnounceList()){
- System.out.println("信息2:"+str);
- }
- }
- if(it.getFiles().size()>0){
- for(Files file: it.getFiles()){
- System.out.println("信息3:"+file.getLength()+"\t"+file.getMd5sum());
- if(file.getPath().size()>0){
- for(String str:file.getPath()){
- System.out.println("信息4:"+str);
- }
- }
- }
- }
- }
- }
Java实现bt文件下载、制作、解析、磁力链接的更多相关文章
- 实战Python实现BT种子转化为磁力链接
经常看电影的朋友肯定对BT种子并不陌生,但是BT种子文件相对磁力链来说存储不方便,而且在网站上存放BT文件容易引起版权纠纷,而磁力链相对来说则风险小一些. 将BT种子转换为占用空间更小,分享更方便的磁 ...
- nodejs 实现 磁力链接资源搜索 BT磁力链接爬虫
项目简介 前端站点 项目效果预览 http://findcl.com 使用 nodejs 实现磁力链接爬虫 磁力链接解析成 torrent种子信息,保存到数据库,利用 Elasticsearch 实现 ...
- 常用下载方式的区别-BT下载、磁力链接、电驴
出处:https://www.jianshu.com/p/72b7a64e5be1 打开 115 离线下载的窗口,看到支持这么多种链接,你都清楚他们是什么原理嘛?接下来我们一个一个说. 一.HTTP( ...
- BT中的磁力链接(转)
注意:磁力链接不是迅雷的,而是BT网络中的一种协议. 磁力链接与种子文件 磁力链接并不是一个新概念,早在2002年,相关的标准草稿就已经制定了.但直到2012年海盗湾为规避版权问题删除了站点上的所有T ...
- 将BT转为磁力链接
实战代码 安装完成后,我们来看下代码: 系统环境:Linux Python环境:Python2.7 请注意python版本 bt2url.py 1 2 3 4 5 6 7 8 9 10 11 12 1 ...
- DHT协议网络爬虫磁力链接和BT种子搜索引擎
系统功能和用到的技术. 系统包括几个独立的部分: 使用 Python 的 Scrapy 框架开发的网络爬虫,用来爬取磁力链接和种子: 使用 PHP CI 框架开发的简易网站: 搜索引擎目前直接使用的 ...
- 迅雷磁力链接转BT种子工具
种子文件目录:C:\Users\jifeng\AppData\Local\Temp\magnetex MagnetEx.exe 从迅雷5.8支持磁力链接的无视受限资源版提取 MagnetEx.exe ...
- 知名互联网公司校招 Java 开发岗面试知识点解析
天之道,损有余而补不足,是故虚胜实,不足胜有余. 本文作者在一年之内参加过多场面试,应聘岗位均为 Java 开发方向.在不断的面试中,分类总结了 Java 开发岗位面试中的一些知识点. 主要包括以下几 ...
- Java中的static关键字解析
Java中的static关键字解析 static关键字是很多朋友在编写代码和阅读代码时碰到的比较难以理解的一个关键字,也是各大公司的面试官喜欢在面试时问到的知识点之一.下面就先讲述一下static关键 ...
随机推荐
- SRILM Ngram 折扣平滑算法
关于n-gram 语言模型,大部分在这篇博客里 记过了, SRILM 语言模型格式解读 , 其实看完了,ngram的大概用法都比较清楚了, 但是关于平滑算法,一直很模糊,就晓得一个"劫富 ...
- VSCode配置简单的vue项目
VSCode配置简单的vue项目 https://www.cnblogs.com/wnxyz8023/p/9989447.html 由于最近要使用的项目框架为前后端分离的,采用的是vue.js+web ...
- zabbix3.4+grafana5.0.1数据可视化
转自:https://blog.csdn.net/xiaoying5191/article/details/79530280
- 013 jquery中关于表格行的增删问题
1.程序 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <titl ...
- 006 jquery过滤选择器-----------(可见性过滤选择器)
1.介绍 2.程序 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> < ...
- 使用Golang开发一个本地代理
引言 最近需要对接一个接口,人家提供了两种调用方式,第一种是基于IE浏览器的Active,第二种是动态链接库dll.我们公司的产品不支持IE,所以只能通过调用dll来完成了. 之前我已经用Java实现 ...
- GRYZ 模 拟 赛 系 列 Xxy 的车厢调度
Xxy 的车厢调度(train.cpp/c/pas)Description有 一 个 火 车 站 , 铁 路 如 图 所 示 ,每辆火车从 A 驶入,再从 B 方向驶出,同时它的车厢可以重新组合.假设 ...
- BZOJ2160: 拉拉队排练
Description 艾利斯顿商学院篮球队要参加一年一度的市篮球比赛了.拉拉队是篮球比赛的一个看点,好的拉拉队往往能帮助球队增加士气,赢得最终的比赛.所以作为拉拉队队长的楚雨荨同学知道,帮助篮球队训 ...
- 钻牛角尖还是走进死胡同--shell脚本根据名称获得 dubbo 服务的 pid
到了下午,突然觉得坐立不安,可能是因为中午没有休息好.老大不小了还在做页面整合的事情,这是参加工作时就干的工作了.然后突然想去挑战高级一点的缺陷排查,结果一不小心就钻了一个牛角尖.启动 dubbo 服 ...
- WEB应用从服务器主动推送Data到客户端有那些方式?
1) html5 websocket 2) WebSocket 通过 Flash 3) XHR长时间连接 4) XHR Multipart Streaming 5) 不可见的Iframe 6 ...