0

我目前正在尝试实现一个小工具,它.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);
    }
    // ...

不知何故,我不知道如何组装文件列表。我知道这必须用地图来完成,但我对我必须选择什么作为键和值感到绝望。

4

1 回答 1

0

info map中key下的valuefiles不是一个map,它是一个map列表,每个map描述一个文件。

于 2016-10-16T17:55:49.227 回答