正如您在问题中提到自己时,请使用
Optional,但是它比较宽松。
excel.setCell(name1, Optional.of(contract).map(Contract::getContactInfo).map(ContactInfo::getPosition).orElse(null));excel.setCell(name2, Optional.of(contract).map(Contract::getEntitledPerson).map(Person::getEmail).orElse(null));
像这样格式化时更容易阅读:
excel.setCell(name1, Optional.of(contract) .map(Contract::getContactInfo) .map(ContactInfo::getPosition) .orElse(null));excel.setCell(name2, Optional.of(contract) .map(Contract::getEntitledPerson) .map(Person::getEmail) .orElse(null));
如果您的目标是最小的代码,则只需捕获即可
NullPointerException。在我看来,这有点骇人听闻,但是可以解决问题。
首先,一个辅助方法:
public static <T> T nullGuard(Supplier<T> supplier) { try { return supplier.get(); } catch (@SuppressWarnings("unused") NullPointerException ignored) { return null; }}
然后包装有问题的表达式:
excel.setCell(name1, nullGuard(() -> contract.getContactInfo().getPosition()));excel.setCell(name2, nullGuard(() -> contract.getEntitledPerson().getEmail()));
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)