I am trying to run an old project in Java using IntelliJ. The ReadMe
file says to use jdk 1.3 or higher. I tried jdk 1.4.2 and got some errors:
If I use jdk 1.3
I get an error for only String[] t = words.split("_");
function because of missing split
. I want to know which is the oldest version of the jdk that contains split
function.
How can I find that?