Initial data commit
This commit is contained in:
parent
72d218235f
commit
f23f22d71c
199087 changed files with 3378941 additions and 0 deletions
12
Task/Introspection/Java/introspection.java
Normal file
12
Task/Introspection/Java/introspection.java
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
public class VersCheck {
|
||||
public static void main(String[] args) {
|
||||
String vers = System.getProperty("java.version");
|
||||
vers = vers.substring(0,vers.indexOf('.')) + "." + //some String fiddling to get the version number into a usable form
|
||||
vers.substring(vers.indexOf('.')+1,vers.lastIndexOf('.'));
|
||||
if(Double.parseDouble(vers) >= 1.5){
|
||||
System.out.println("YAY!");
|
||||
}else{
|
||||
System.err.println("Must use Java >=1.5");
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue