-3

On OS X (10.6.8) and in terminal:

java -version

returns

java version "1.6.0_65"

Is this actually Java 6?

I'm guessing that the version of Java in 10.6.8 is at least relatively current.

I'm asking because of planning to install jMeter.

UBIK LOAD PACK
  • 33,980
  • 5
  • 71
  • 116
MikeiLL
  • 6,282
  • 5
  • 37
  • 68

2 Answers2

2

Yes, 1.6.x is Java 6.

As to whether 1.6.0_65 can be considered "relatively current", yes and no. It's a relatively current release of Java 6 (see the history). However, Java 6 itself dates back to 2006 and is two generations old.

NPE
  • 486,780
  • 108
  • 951
  • 1,012
2

Starting from Java 1.2, Java started being called by the number after the decimal point. So, Java 1.2 was Java 2 and kept that name until version 1.5 at which point it was called Java 5. Then, 1.6.x was called Java 6.

1.7.x is called Java 7.

baksoy
  • 180
  • 1
  • 1
  • 7