IO-file 01 名称或路径
Posted zwyzwy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了IO-file 01 名称或路径相关的知识,希望对你有一定的参考价值。
package com.bwie.io;
import java.io.File;
/**
* 名称或路径
* [getName:名称
* getPath
* getAbsolutePath:绝对路径
* getParent:父路径,不存在空]
* @author Allen17805272076
*
*/
public class FileDemo3 {
public static void main(String[] args) {
String path="src/userImg.GIF";
File src = new File(path);
System.out.println("getName()"+src.getName());//getName()userImg.GIF
System.out.println("getPath()"+src.getPath());/*getPath()src/userImg.GIF*/
System.out.println("getAbsolutePath()"+src.getAbsolutePath());//getAbsolutePath()C:webworkspaceIO-study/src/userImg.GIF
System.out.println(src.getParent());//src 如果没有,返回null
System.out.println(src.getParentFile());//父对象
* 名称或路径
* [getName:名称
* getPath
* getAbsolutePath:绝对路径
* getParent:父路径,不存在空]
* @author Allen17805272076
*
*/
public class FileDemo3 {
public static void main(String[] args) {
String path="src/userImg.GIF";
File src = new File(path);
System.out.println("getName()"+src.getName());//getName()userImg.GIF
System.out.println("getPath()"+src.getPath());/*getPath()src/userImg.GIF*/
System.out.println("getAbsolutePath()"+src.getAbsolutePath());//getAbsolutePath()C:webworkspaceIO-study/src/userImg.GIF
System.out.println(src.getParent());//src 如果没有,返回null
System.out.println(src.getParentFile());//父对象
}
}
}
以上是关于IO-file 01 名称或路径的主要内容,如果未能解决你的问题,请参考以下文章
CakePHP 错误的视图路径或 RoutingAliases 的对流
Powershell:根据逻辑驱动器名称或文件路径提取物理磁盘属性[重复]
错误:没有指定名称或路径的 SDK 'Users/..../Project/armv7
tsc : 无法将“tsc”项识别为 cmdlet函数脚本文件或可运行程序的名称。请检查名称的拼写,如果包括路径,请确保路径正确,然后再试一次。