KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > CheckForJava14


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc;
5
6 import org.apache.commons.lang.StringUtils;
7
8 public class CheckForJava14 {
9   public static void main(String JavaDoc[] args) {
10     String JavaDoc version = System.getProperty("java.version");
11     System.exit(StringUtils.contains(version, "1.4") ? 0 : -1);
12   }
13 }
14
Popular Tags