首页 > 其他分享 >File概述和File的构造方法

File概述和File的构造方法

时间:2024-07-30 21:56:58浏览次数:15  
标签:构造方法 parent s3 概述 File child public String

File是什么

        File对象表示路径,可以是文件,可以是文件夹,路径可以存在,可以不存在

绝对路径vs相对路径

        绝对路径:带盘符

        相对路径:不带盘符,默认到当前项目下去找

File的三种构造方法

package com.chen.bao3;

import java.io.File;

public class FileDemo {
    /*
        public File(String pathname)
    *   public File(String parent, String child)
    *   public File(File parent, String child)
    * */
    public static void main(String[] args) {
        File file1 = new File("E:\\soft\\WeChat");
        System.out.println(file1);
        
        String s2_parent="E:\\soft";
        String s2_child="WeChat";
        File file2 = new File(s2_parent, s2_child);
        System.out.println(file2);

        File s3_parent = new File("E:\\soft");
        String s3_child="WeChat";
        File file3 = new File(s3_parent, s3_child);
        System.out.println(file3);



    }

}

标签:构造方法,parent,s3,概述,File,child,public,String
From: https://blog.csdn.net/2401_85619378/article/details/140761778

相关文章

  • GPT1-3及BERT的模型概述
    GPT1-3及BERT的模型概述(2020年5月之前LLMs主流模型)GPT-1(2018年6月)......
  • 柿子多酚的概述
    一、柿子多酚的概述柿子多酚是柿子果实中多种酚类化合物的总称,这些化合物主要包括黄酮类、花青素类、类黄酮类以及其他酚酸类化合物等。这些多酚类化合物在柿子中的含量丰富,是柿子具有多种保健功能的重要物质基础。二、柿子多酚的组成柿子中的多酚类化合物种类繁多,主要包括以下......
  • Python - Redirecting output of print to a file
    Theprintfunctioncanalsobeusedtowritetoafile.Theoutputofprint,thatisbydefault,senttothescreencanberedirectedtoanopenfile.Forthis,youhavetosupplythefileobjectasanargumentforthenamedparameterfile.Hereisanexa......
  • canal 报错:Could not find first log file name in binary log index file
    canalwiki地址:https://github.com/alibaba/canal/wiki/canal报错:Couldnotfindfirstlogfilenameinbinarylogindexfile1、canal_deployer日志报错:2024-07-2914:25:21.624[destination=example,address=/192.168.1.7:3306,EventParser]ERRORc.a.o.c.p.......
  • Python - File opening modes and buffering
    'r'-readmode(default)'w'-writemode'a'-appendmode'x'-exclusivecreationWeknowthatthemode'r'opensanexistingfileforreadingonly;thefileshouldalreadyexist.Ifyouopenafilein......
  • 一文解读Dockerfile
    一文解读Dockerfile一文解读Dockerfile前言上一篇我们说到Docker镜像及镜像分层结构,今天这一篇也跟上一篇联系比较密切,接下来我们来说一下如何使用Dockerfile来构建一个镜像。什么是DockerfileDockerfile是一个用来构建镜像的文本文件,文本内容包含了一条条构建镜像所需的指......
  • 78.SAP ME - SAP ME和SAP NetWeaver log files的位置
    目录1.defaultTracefiles内容文件位置2.dev_serverfiles内容文件位置3.dev_icmfiles内容文件位置4.responses.trcfiles内容文件位置1.defaultTracefilesYoushouldalwayscheckthislogfirstwhenanysystemissueisreported内容包含SAPNetweave......
  • python性能分析器:cProfile
    代码:(1)importcProfileimportrecProfile.run('re.compile("foo|bar")')运行结果:(2)importcProfiledefrunRe():importrecProfile.runctx('re.compile("foo|bar")',None,locals())runRe()运行结果:(3)i......
  • 【前端 · 面试 】HTTP 总结(十一)—— HTTPS 概述
    最近我在做前端面试题总结系列,感兴趣的朋友可以添加关注,欢迎指正、交流。争取每个知识点能够多总结一些,至少要做到在面试时,针对每个知识点都可以侃起来,不至于哑火。HTTPS前言通过前面内容的学习,相信大家对HTTP的概念、特点、请求方法及缓存等的......
  • ansible执行source /etc/profile不生效
    ansible执行source/etc/profile不生效ssh登录有两种模式:1.loginshell用SSH客户端(比如Putty、xshell)登陆Linux系统时,要求输入用户名/密码登录或根据SSHkey登录时,就是loginshell。non-loginshell而在A机器上使用SSH免密码登录B机器,就是non-logins......