`
snoopy3384
  • 浏览: 12862 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

File.separator & separatorChar

阅读更多
separator

public static final String separatorThe system-dependent default name-separator character, represented as a string for convenience. This string contains a single character, namely separatorChar.

文件分隔符,各个操作系统不一样
如WIndows的是 "\ ",而Unix的是 "/ "

java中, "\\ "表示分隔,相当于在windows中的 "\"

separatorChar
public static final char separatorCharThe system-dependent default name-separator character. This field is initialized to contain the first character of the value of the system property file.separator. On UNIX systems the value of this field is '/'; on Microsoft Windows systems it is '\\'.
分享到:
评论

相关推荐

    使用System.getProperty(line.separator).md

    这是本人在进行使用递归替换HTML文件中的图片内容时,所遇到的问题解决方案,喜欢能够帮到大家,让自己懂得东西越来愈多,做更多的分享

    javaFile[归类].pdf

    File file = new File("d:" + File.separator + "demo.doc"); if (!file.exists()) { try { file.createNewFile(); System.out.println(" 文件创建成功!"); } catch (IOException e) { e.printStackTrace();...

    pdfbox-2.0.7.jar

    String path=imgDir+File.separator; if(new File(path).exists()==false){ new File(path).mkdirs(); } ImageIO.write(image, "PNG", new File(imgDir+File.separator+i+".png")); }...

    文件系统操作-自己写的

    +-- java.io.File (implements java.io.Serializable, java.lang.Comparable<java.io.File>) ``` ##### 2. `File`类构造方法 `File`类提供了多种构造方法来帮助创建`File`对象: - **File(String pathname)**: ...

    tinkerDemo的两个apk可以安装试一下

    tinkerDemo简单的实现了热补丁,具体的还没尝试,安装上baseApk(app-debug-1019-15-16-03)之后,将patch_signed_7zip放置到Environment.getExternalStorageDirectory()+File.separator;+ "FixPath"+File.separator...

    java删除文件夹代码

    把分降低吧 呵呵 boolean flag = false; File file = new File(path); if (!file.exists()) { ... if (path.endsWith(File.separator)) { temp = new File(path + tempList[i]); 部分代码显示

    Java中的IO整理完整版

    接着,案例2介绍了`File`类的两个常量:`File.separator`和`File.pathSeparator`。`File.separator`用于表示当前操作系统中的路径分隔符,例如在Windows上是`\`,在Linux或Mac上是`/`。`File.pathSeparator`则是用于...

    Android代码-SilkyAnimation

    SilkyAnimation 用SurfaceView来播放帧动画,避免在很多帧的情况下使用AnimationDrawable带来的OOM和卡顿问题。... File.separator "bird") mAnimation.start(file); 从assets目录中读取资源 get r

    android java.lang.IllegalArgumentException contains a path separator

    2. 使用`File.separator`常量代替硬编码的路径分隔符,以保证在不同操作系统上的兼容性。 3. 对路径进行校验,使用`PathUtils`等工具类来确保路径的有效性。 4. 当涉及到文件操作时,确保使用的是文件名而不是完整的...

    java中的IO操作总结(四)

    51 import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectOutputStream; import java.io.Serializable; @SuppressWarnings("serial") //一个类要想实现序列...

    java屏幕录像(包含鼠标轨迹)生成avi媒体文件

    new File(System.getProperty("user.home")+File.separator+"Videos"); 其它: new File(System.getProperty("user.home")+File.separator+"Movies"); 我的电脑是C:\Documents and Settings\hz001\Videos这个路径 ...

    SpringMVC批量上传

    path+File.separator+filename)); //获取数据库存储路径 String root = request.getContextPath(); String mkdirsql = hex.charAt(0)+"/"+hex.charAt(1)+"/"; String sqlpath = root+"/images/"+mkdirsql...

    如何配置maven

    **如何配置Maven** Maven是一个强大的项目管理和构建工具,广泛应用于Java开发中。它简化了项目的构建过程,管理依赖关系,并提供了标准化的构建生命周期。下面是详细的Maven配置步骤: 1. **下载Maven** ...

    9异常,系统属性,Math类.rar

     ●file.separator:文件分隔符,Windows环境下为“",Unix环境下为“/”;  ●user.home:用户主目录;  ●java.home:Java实时运行环境的安装目录;  ●java.ext.dirs:JDK的安装目录;  ●os.name:操作...

    java字节流和字符流[整理].pdf

    File file = new File("d:" + File.separator + "demo.txt"); // 使用追加模式创建FileOutputStream OutputStream out = new FileOutputStream(file, true); String s = "追加内容"; byte[] b = s.getBytes(); ...

    Java实现文件的压缩和解压

    File f = new File(outputDirectory + File.separator + zipEntry.getName()); f.createNewFile(); in = zipFile.getInputStream(zipEntry); out = new FileOutputStream(f); byte[] by = new byte...

    java文件复制

    temp=new File(oldPath+File.separator+file[i]); } if(temp.isFile()){ FileInputStream input = new FileInputStream(temp); FileOutputStream output = new FileOutputStream(newPath + "/" + (temp....

    java压缩文件源码--ZipUtils

    FileOutputStream fos = new FileOutputStream(getFileName(file.getPath())+File.separator+newDir(file, entry.getName())); dest = new BufferedOutputStream(fos, BUFFER); while((count = zis...

    javaIo处理

    1. 导入必要的包:`import java.io.File;` 2. 创建`File`对象,指定文件路径:`File f = new File("D:\\hello.txt");` 3. 使用`createNewFile()`方法尝试创建文件。如果文件已经存在,则会抛出异常。因此这里使用了`...

Global site tag (gtag.js) - Google Analytics