DANCE WITH JAVA

开发出高质量的系统

常用链接

统计

积分与排名

好友之家

最新评论

java中判断操作系统

public class Path {
 public static final String CLASS_PATH;
 public static final boolean isLinux;
 static{
  URL resource = Path.class.getResource("Path.class");
  String classPath = resource.getPath();
  String className = Path.class.getName().replace('.', '/')
    + ".class";
  String classesPath = classPath.substring(0, classPath
    .indexOf(className));
  if(System.getProperty("os.name").toUpperCase().indexOf("WINDOWS")!=-1&&classesPath.startsWith("/")){
   classesPath=classesPath.substring(1);
   isLinux=false;
  }else{
   isLinux=true;
  }
  CLASS_PATH=classesPath;
 }
}
 

posted on 2006-09-20 21:19 dreamstone 阅读(1386) 评论(0)  编辑  收藏 所属分类: jdk相关


只有注册用户登录后才能发表评论。


网站导航: