The following warnings occurred: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Warning [2] Trying to access array offset on value of type null - Line: 4475 - File: inc/functions.php PHP 8.0.30 (Linux)
|
Testing DataMalt 2.3 using JDK 12 Early-Access Builds - Printable Version +- jWork.ORG forums (https://jwork.org/forum) +-- Forum: DataMelt (/forumdisplay.php?fid=1) +--- Forum: DataMelt bug report (/forumdisplay.php?fid=3) +--- Thread: Testing DataMalt 2.3 using JDK 12 Early-Access Builds (/showthread.php?tid=132) |
Testing DataMalt 2.3 using JDK 12 Early-Access Builds - jworkorg - 12-13-2018 10:47 AM Results of DataMelt 2.3 using JDK 12 Early-Access Builds (Dec 2018) JDK 12 Early-Access Builds information: Code: Look & Feel: com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel Results of the tests: Warnings running DatMelt in the GUI mode: Code: Error loading L&F: java.lang.ClassNotFoundException: com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel Detected problem: NimbusLookAndFeel not available. Results of the tests: Tests of 667 examples of DataMelt on the JDK platform have passed successfully. All examples can be found in https://jwork.org/dmelt/code/index.php. DataMelt team RE: Testing DataMalt 2.3 using JDK 12 Early-Access Builds - admin - 12-13-2018 11:01 PM Hi, Indeed, it works with all these warnings. But I remind that some Jython web scripts require adjustment of the "import" statements, since Jython 2.7 cannot use wild cards (i.e. "*") for importing Java packages starting (starting from the JDK version 9). For example, this script with the explicit import statement works OK for all Java versions: Code: from jhplot import HPlot3D,H2D,F2D But the Jython code shown below fails (due to the regular expression in the import statement "java.util import *"): Code: from jhplot import HPlot3D,H2D,F2D The output of the code above[/quote][/code]: Quote:Traceback (most recent call last): , File test.py, line 16, in <module> , The Jython package inside DataMelt should be updated when Jython will be certified for JDK9-JDK12. As far as I know, this works on Jython is ongoing. Tania |