1.在解压时提示 Default constructor not found for type XStar.Node
意思是Node没有默认的构造函数。添加默认的构造函数即可。
public Node() {
}