问题描述
我正在研究javax.smartcardio类。我正在使用eclipse 3.6而且我有JDK 6 SE。我可以使用语句import javax.smartcardio。*或其任何单独的类,只要我更改首选项以警告或忽略禁止引用。
I'm studying the javax.smartcardio classes. I'm using eclipse 3.6 and I have JDK 6 SE. I can use the statement import javax.smartcardio.* or any of its individual classes, as long as I change preferences to warn or ignore forbidden references.
我不知道请参阅标准文档中对javax.smartcardio的任何提及b $ b并没有在eclipse中弹出javadoc帮助。我找到了的文档。
I don't see any mention of javax.smartcardio in the standard documentation at Java SE 6and no javadoc help pops up in eclipse. I have found docs here.
有没有办法将Eclipse链接到smartcardio的javadocs?
Is there a way of linking Eclipse to the javadocs for smartcardio?
推荐答案
接受的JSR 。
Sun和Oracle在安全API方面并没有真正沟通。它们的设计相对较好,但缺乏支持,它们确实引入了功能。
Sun and Oracle don't really communicate well regarding security API's. They are relatively well designed, but the support is lacking, and they do introduce features out of the blue.
虽然 javax.smartcardio
包是一个可接受的JSR,但Java 6和7 SE的伞形JSR不包含它。请参见了解更多信息(见下文)。 所以 javacardx.smartcardio
它是不的Java SE标准API的一部分。现在您可能无法访问API甚至如果它存在。并且您无法添加自己的,因为可能出现在特定版本中。您可以使用Eclipse访问规则启用 javax.smartcardio
并从问题视图中删除访问冲突。
Although the javax.smartcardio
package is an accepted JSR, the umbrella JSR's for Java 6 and 7 SE don't include it. See java_se-fr-spec.zip for more information (see below). So javacardx.smartcardio
it is not part of the Java SE standard API. Nowadays you may have trouble accessing the API even if it is present. And you cannot add your own as it may be present for a particular edition. You can use Eclipse access rules to enable javax.smartcardio
and remove access violations from your "Problem view".
Oracle的Java 8确实包含 javax.smartcardio
实现。您可能仍需要配置对它的访问。
Java 8 from Oracle does include an javax.smartcardio
implementation. You may still have to configure access to it.
这篇关于javax.smartcardio - javadocs的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!