File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 11[
2+ {
3+ "version" : " 11.0.6000" ,
4+ "matchVersion" : {
5+ "dcv" : " 3.0.6000"
6+ }
7+ },
28 {
39 "version" : " 11.0.4000" ,
410 "matchVersion" : {
Original file line number Diff line number Diff line change @@ -79,9 +79,17 @@ Dynamsoft.License.LicenseManager.initLicense("YOUR_LICENSE_KEY");
7979```
8080>
8181``` java
82- BarcodeReader . initLicense(" YOUR-LICENSE-KEY" );
83- BarcodeReader reader = new BarcodeReader ();
84- // add further process
82+ try {
83+ LicenseError licenseError = LicenseManager . initLicense(" YOUR-LICENSE-KEY" );
84+ if (licenseError. getErrorCode() != EnumErrorCode . EC_OK ) {
85+ System . out. println(" License initialization failed: ErrorCode: " + licenseError. getErrorCode() + " , ErrorString: " + licenseError. getErrorString());
86+ return ;
87+ }
88+ } catch (LicenseException e) {
89+ System . out. println(" License initialization failed: ErrorCode: " + e. getErrorCode() + " , ErrorString: " + e. getErrorString());
90+ return ;
91+ }
92+ // add further process
8593```
8694>
8795``` java
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ noTitleIndex: true
3535
3636| Versions | Available Editions |
3737| -------- | ------------------ |
38+ | 11.0.6000 | [ C++] ({{ site.cpp_release_notes}}cpp-11.html#1106000-08062025){: target ="_ blank"} / [ .NET] ({{ site.dotnet_release_notes }}dotnet-11.html#1106000-08062025){: target ="_ blank"} / [ Python] ({{ site.python_release_notes}}python-11.html#1106000-08062025){: target ="_ blank"} / [ Java] ({{ site.java_release_notes}}java-11.html#1106000-08062025){: target ="_ blank"} |
3839| 11.0.4000 | [ C++] ({{ site.cpp_release_notes}}cpp-11.html#1104000-07152025){: target ="_ blank"} / [ .NET] ({{ site.dotnet_release_notes }}dotnet-11.html#1104000-07152025){: target ="_ blank"} / [ Python] ({{ site.python_release_notes}}python-11.html#1104000-07152025){: target ="_ blank"} |
3940| 11.0.3000 | [ C++] ({{ site.cpp_release_notes}}cpp-11.html#1103000-05132025){: target ="_ blank"} / [ .NET] ({{ site.dotnet_release_notes }}dotnet-11.html#1103000-05132025){: target ="_ blank"} / [ Python] ({{ site.python_release_notes}}python-11.html#1103000-05152025){: target ="_ blank"} / [ Android] ({{ site.android_release_notes}}android-11.html#1103000-05152025){: target ="_ blank"} / [ iOS] ({{ site.oc_release_notes }}ios-11.html#1103000-05152025){: target ="_ blank"} |
4041| 11.0.2000 | [ Python] ({{ site.python_release_notes}}python-11.html#1102000-04092025){: target ="_ blank"} |
You can’t perform that action at this time.
0 commit comments