Java 项目中缺少 JAR
我在谷歌上搜索了很多,试图找到包含以下类的罐子:
import com.zerog.ia.api.pub.CustomCodeAction;
import com.zerog.ia.api.pub.InstallerProxy;
import com.zerog.ia.api.pub.UninstallerProxy;
知道在哪里可以找到它吗?
谢了。
I've Googled a lot trying to find the jar that contains the following clasess:
import com.zerog.ia.api.pub.CustomCodeAction;
import com.zerog.ia.api.pub.InstallerProxy;
import com.zerog.ia.api.pub.UninstallerProxy;
Any idea of where can I find it?
Tks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是来自一家名为 Flexera 软件。顺便说一句,您可以使用 java 包命名约定 来查找有关罐子的信息。它通常以生成它的公司或组织的 URL 的反向开头。在本例中,它是 Zerog.com,但现在转发到 Flexera。
This is from a commercial product from a company called Flexera Software. BTW, you can use the java package naming conventions to find the information about a jar. It is usually starts with the reverse of the url of the company or organization that produced it. In this case, it was zerog.com, but that now forwards to Flexera.
您正在寻找的 jar 属于名为 InstallAnywhere 的 Java 安装程序产品,最初由 Zero G Software 制作。 Zero G 被 Macrovision 收购,然后将其软件集团出售给 Flexera Software。
不幸的是,似乎没有社区版。
The jar you're looking for belongs to a Java installer product named InstallAnywhere, originally made by Zero G Software. Zero G was bought up by Macrovision, who then sold their software group to Flexera Software.
Unfortunately there doesn't seem to be a community edition.
您需要导入此库:IAClasses.zip
位置:
“C:\Program Files (x86)\InstallAnywhere 2012\resource\IAClasses.zip”
CustomCodeAction、InstallerProxy 和 UninstallerProxy 类位置位于:
“IAClasses.zip\com\zerog\ia\api\pub\”
You need import this library: IAClasses.zip
Location:
"C:\Program Files (x86)\InstallAnywhere 2012\resource\IAClasses.zip"
CustomCodeAction, InstallerProxy and UninstallerProxy class location here:
"IAClasses.zip\com\zerog\ia\api\pub\"