如何在Java中创建包含多个文件的torrent文件?

时间:2016-06-28 01:23:27

标签: java torrent

我目前正在尝试实现一个小工具,它可以从文件夹中的一组文件创建.torrent。它适用于单个文件。

根据此站点:Torrent_file多个文件存储在文件集中。

这是我到目前为止所做的:

public Map<Object, Object> getFiles(File dict) throws IOException, NoSuchAlgorithmException {

    Map<Object, Object> files = new HashMap<Object, Object>();
    FileOutputStream fos = new FileOutputStream(merged);

    for (File fileEntry : dict.listFiles()) 
    {
        if (fileEntry.isFile()) 
        {
            Map<String, Object> file = new HashMap<String, Object>();
            file.put("path", fileEntry.getName());
            file.put("length", fileEntry.length());

            FileInputStream fis = new FileInputStream(fileEntry);
            byte[] byteArray = new byte[(int) fileEntry.length()];
            fis.read(byteArray, 0, (int) fileEntry.length());
            fos.write(byteArray);
            fos.flush();
            files.put(file.get("path"), file.get("length"));
        }

    }
    fos.close();
    pieces = hashPieces(merged, pieceLength);
    return files;
}

我尝试为每个单独的文件创建一个地图,然后将这些地图放入另一个包含所有文件的地图中。然后我将文件作为文件数组合并到一个大文件中以计算碎片散列。但是,文件结构部分不能正常工作。

多个文件的方法由:

调用
    // ...
    Map<String, Object> info = new HashMap<String, Object>();
    info.put("name", sharedFile.getName());
    if (sharedFile.isDirectory()) {
        Map<Object, Object> path = getFiles(sharedFile);
        info.put("files", path);
    }
    // ...

不知怎的,我不知道如何组装文件列表。我知道必须用地图来完成,但我绝望地想要选择什么作为关键和价值。

1 个答案:

答案 0 :(得分:0)

信息地图中files键下的值不是地图,而是地图列表,每个地图描述一个文件。