compareVersion - Web APIs 编辑
Parts of this page show the use of the XPInstall API. The majority of this API is now deprecated and as of Gecko 1.9 no longer available. Extension, Theme, and plug-in developers must switch away from install.js
based packages to the new packaging scheme with an install.rdf
manifest. In particular plugin developers should see how to package a plugin as an extension.
compareVersion
Compares the version of a file or package with the version of an existing file or package.
Method of
InstallTrigger object
Syntax
int compareVersion ( String registryName, InstallVersion version); int compareVersion ( String registryName, String version); int compareVersion ( String registryName, int major, int minor, int release, int build);
Parameters
The compareVersion
method has the following parameters:
registryName
- The pathname in the Client Version Registry for the component whose version is to be compared. This parameter can be an absolute pathname, such as
/royalairways/RoyalSW
or a relative pathname, such asplugsin/royalairway/RoyalSW
. Note that the registry pathname is not the location of the software on the computer; it is the location of information about the software inside the Client Version Registry. version
- An InstallVersion
object containing version information or a String in the format major.minor.release.build, where major, minor, release, and build are integer values representing version information.
Returns
If the versions are the same or if Software Installation is not enabled, this method returns 0. If the version of registryName
is smaller (earlier) than version
, this method returns a negative number. Otherwise, this method returns a positive number. In particular, this method returns one of the following values:
-5
- component not present or not registered.
-4
registryName
has a smaller (earlier) major number thanversion
.-3
registryName
has a smaller (earlier) minor number thanversion
.-2
registryName
has a smaller (earlier) release number thanversion
.-1
registryName
has a smaller (earlier) build number thanversion
.0
- The version numbers are the same; both objects represent the same version.
1
registryName
has a larger (newer) build number thanversion
.2
registryName
has a larger (newer) release number thanversion
.3
registryName
has a larger (newer) minor number thanversion
.4
registryName
has a larger (newer) major number thanversion
.
The following constants can be used to check the value returned by compareVersion:
int MAJOR_DIFF = 4; int MINOR_DIFF = 3; int REL_DIFF = 2; int BLD_DIFF = 1; int EQUAL = 0;
In Communicator 4.5, the following constants are defined and available for checking the value returned by compareVersion
:
<code>InstallTrigger.MAJOR_DIFF InstallTrigger.MINOR_DIFF InstallTrigger.REL_DIFF InstallTrigger.BLD_DIFF InstallTrigger.EQUAL </code>
Description
The compareVersion
method compares the version of an installed file or package with a specified version. It is often used as a check against which to initiate the installation process. If registryName
is not found in the Client Version Registry or if registryName
does not have version, registryName
is assumed to have a version of 0.0.0.0. If registryName
represents a file, compareVersion
checks for the existence of the file. If the file has been deleted, its version is assumed to be 0.0.0.0.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论