Get Java Version from Java

1
2
3
4
5
public class myGetVersion {
   public static String getVersion() {
      return System.getProperty("java.version");
   }
}

Leave a Reply