zoukankan      html  css  js  c++  java
  • java io的相对路径和绝对路径

    简单的说,在使用inputstream读取文件的时候,所谓的相对路径是相对于工程目录的,绝对路径当然是对于盘符根目录来说。

    例如:

    代码
    package io;

    import java.io.File;
    import java.io.FileInputStream;
    import java.io.IOException;
    import java.io.InputStream;

    public class InputStreamDemo {
    public static void main(String[] args) throws IOException {
    File root
    = new File("");
    System.out.println(root.getAbsolutePath());
    File f
    = new File("src/main/java/io/test.properties");
    System.out.println(f.exists());
    System.out.println(f.getAbsolutePath());
    InputStream in
    = new FileInputStream("src/main/java/io/test.properties");
    byte[] b = new byte[255];
    while(in.read(b) != -1) {
    System.out.println(
    new String(b));
    }
    }
    }

    输出结果:

    E:\EclipseProjects\demoSet
    true
    E:\EclipseProjects\demoSet\src\main\java\io\test.properties
    tt = "good"

    E:\EclipseProjects\demoSet

    true

    E:\EclipseProjects\demoSet\src\main\java\io\test.properties

    tt = "good"

    我只是在和该类同级的地方放了一个test.properties,里面写了tt="good",用相对路径的话只能把目录写全,我本来以为直接写test.properties就可以了。

    还有一种方法是直接从类路径中读取

    代码
    package io;

    import java.io.IOException;
    import java.io.InputStream;

    public class ResourceDemo {
    public static void main(String[] args) throws IOException {
    InputStream in
    = ResourceDemo.class.getResourceAsStream("test.properties");
    byte[] b = new byte[255];
    while (in.read(b) != -1) {
    System.out.println(
    new String(b));
    }
    in.close();
    }
    }

    使用getResourceAsStream方法的相对路径就在该类的目录下,而写上路径"/test.properties"系统就会到classpath的根目录底下去寻找。

    相比较而言,getResourceAsStream方法更好更ok,推荐使用

  • 相关阅读:
    SQL性能优化(不断总结)
    字符编码:区位/国标(gb2312、gbk)/机内码/ASCII/ANSI/Big5
    计算机中信息编码
    删除sybase一列报错:The 'select into' database option is not enabled for database.....
    常用Oracle函数(From OTN)
    常用正则
    剖析Windows的消息运行机制 (学习一)
    服务器响应码及解释
    了解注册表结构
    Windows消息大全收藏
  • 原文地址:https://www.cnblogs.com/xiziyin/p/1620745.html
Copyright © 2011-2022 走看看