我有这个java类
class Go {
public boolean isSha1() {
return true;
}
public String getSha1() {
return this.sha1;
}
public String setSha1(String sha1) {
}
...
}
当我尝试使用 java 的 java.beans.XMLEncoder 对其进行编码时,它会输出除sha1 之外的所有属性。这就像它跳过一个属性!