Java 10

Java 10 – Removed Features & Options

DK 10 release has removed several deprecated APIs, features and Options from Java library. Following is the relevant details.

Unsupported LookAndFeels removed − Applications using Nimbus or Aqua LookAndFeels has to migrate to new syntax.

Nimbus – existing code

javax.swing.UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel");

Nimbus – new code

UIManager.setLookAndFeel("javax.swing.plaf.nimbus.NimbusLookAndFeel");

Aqua – existing code

javax.swing.UIManager.setLookAndFeel("apple.laf.AquaLookAndFeel");

Aqua – new code

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
  1. Runtime.getLocalizedInputStream and getLocalizedOutputStream Methods removed − Runtime.getLocalizedInputStream and getLocalizedOutputStream Methods are no more available as they were part of an obsolete internationalization mechanism.
  2. RMI Server-Side Multiplex Protocol Support removed − RMI Server-Side Multiplex Protocol was disabled in Java 9 and is removed in Java 10.
  3. Common DOM APIs removed − com.sun.java.browser.plugin2.DOM, and sun.plugin.dom.DOMObject APIs have been removed. netscape.javascript.JSObject is available to modify the DOM.
  4. FlatProfiler removed − FlatProfiler was deprecated in Java 9 and is removed in Java 10.
  5. Obsolete -X Options removed − -Xoss, -Xsqnopause, -Xoptimize, -Xboundthreads, and -Xusealtsigs, obsolete Hotspot VM options are removed in java 10.
  6. HostServicesgetWebContext Method removed − HostServicesgetWebContext Method was deprecated in Java 9 and is removed in Java 10.
  7. T2K Rasterizer and ICU Layout Engine removed − T2K rasterizer and ICU layout engine have been removed from JavaFX.
  8. VP6/FXM/FLV Code removed − P6 video encoding format and FXM/FLV container support has been removed in JavaFX Media. H.264/AVC1 in the MP4 container or HTTP Live Streaming is to be used instead.
  9. Pre-1.2 SecurityManager Methods and Fields removed − The pre-1.2 deprecated java.lang.SecurityManager methods and fields(marked forRemoval=true) have been removed.
  10. policytool removed − The policytool security tool has been removed.
  11. Deprecated Classes in com.sun.security.auth.** removedFollowing deprecated classes are removed
    • com.sun.security.auth.PolicyFile
    • com.sun.security.auth.SolarisNumericGroupPrincipal
    • com.sun.security.auth.SolarisNumericUserPrincipal
    • com.sun.security.auth.SolarisPrincipal
    • com.sun.security.auth.X500Principal
    • com.sun.security.auth.module.SolarisLoginModule
    • com.sun.security.auth.module.SolarisSystem
  12. Old(JDK 6, JDK 7, and JDK 8 Era) Standard Doclet removed − The old (JDK 6, JDK 7 and JDK 8 era) standard doclet, used to output HTML content, and are superseded by a replacement, has been removed.
  13. javah tool removed − The Native-Header Generation Tool, javah has been removed.
  14. Java Launcher’s Data Model Options -d32 and -d64 removed. − The obsolete and deprecated selection options (-d32, -d64, -J-d32 and -J-d64) have been removed.

About the Author: Elavarasan PK

Technical Specialist, Intersoft Data Labs