从Sun的jdk(1.8)迁移到Openjdk12之后,Eclipse无法识别“ javax.smartcardio”的整个库。

例如:

import javax.smartcardio.Card;


会导致错误

Card cannot be resolved to a type

The import javax.smartcardio cannot be resolved


我们试图将“ src.zip”添加到Eclipse中的JRE配置中,但是其内容未出现在“ Project Explorer”中。

最佳答案

Eclipse版本(查看图片。)


右键单击项目->配置构建路径... picture
模块依赖性->添加系统模块... picture
添加java.smartcardio(不是javax.smartcardio)picture
检查模块->应用并关闭picture

10-02 06:38