0

您好我正在解码使用霍夫曼编码压缩的文件。我们使用EOF字符来表示我们已完成解压缩。每当我为一个EOF字符编码时,我都会打一个NullPointerException. 当我不包括检查时它工作正常,但我最终得到了这个EOF角色。我不明白我是如何得到的NullPointerException,我会感谢任何可以提供帮助的人。谢谢

public static void decompress(String in, String out)
{
    try 
    {   
        String result = "";
        BinaryNode<Character> pointer = huffTree;
        ArrayList<Character> a = new ArrayList<Character>();
        File outFile = new File(out);
        FileOutputStream decompressedFile = new FileOutputStream(outFile);

        for(char c : decodings.toString().toCharArray())
        {
            if(c == '0')
            {
                pointer = pointer.getLeft();
            }
            else if(c == '1')
            {
                pointer = pointer.getRight();
            }
            if(pointer.isLeaf())
            {
                if(pointer.getElement() == '^')
                {
                    return;
                }
                 decompressedFile.write(pointer.getElement());
                pointer = huffTree;
            }
        }
        decompressedFile.close();
    }
    catch(Exception e)
    {
        System.err.println("Error");
        e.printStackTrace();
    }
}
4

0 回答 0