关于Windows和Linux文件盘符的不同的代码块

   String property = System.getProperty("file.separator");
        String fileName ="";
        //以下if判断主要是为了兼容Linux和windows
        if(property.equals("/")){
            fileName = str.substring(str.lastIndexOf("/")+1);
        }else {
            fileName = str.substring(str.lastIndexOf("\\") + 1);
        }

你可能感兴趣的:(代码备忘)