Get the Product Name and Assembly Version Information
Contents
[
Hide
]
Aspose.BarCode for Java provides static fields in the BuildVersionInfo class for getting information about product name, assembly version, release date etc.
Below is a code snippet that prints the product and assembly info on the output screen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
System.out.println("Assembly version: " + BuildVersionInfo.ASSEMBLY_VERSION); | |
System.out.println("Product: " + BuildVersionInfo.PRODUCT); | |
System.out.println("Release Date: " + BuildVersionInfo.RELEASE_DATE); |
![]() |
---|
Figure: Output screen |