maven下resource文件夹读取文件的方法

在maven工程中,我们会将配置文件放到,src/main/resources   下面,例如

我们需要确认resource 下的文件 编译之后存放的位置

它编译的路径直接位于classes下面,这个路径其实就是classPath的路径,所以,在resources 根目录下的配置文件其实就是 classPath的路径:

  1. public static void main(String[] args) throws ParserConfigurationException, Exception{  
  2.         ClassLoader classLoader = TestDom.class.getClassLoader();  
  3.         URL resource = classLoader.getResource("test.xml");  
  4.         String path = resource.getPath();  
  5.         System.out.println(path);  
  6.         InputStream resourceAsStream = classLoader.getResourceAsStream("test.xml");  
 在一个maven工程下,通常有resource文件夹,其中再存放相关的资源文件, 
比如resource下有个files文件夹,其中有个文件叫test.txt,则读取方法之一为: 

Java代码  收藏代码
private String getFile(String fileName) {  
   
    StringBuilder result = new StringBuilder("");  
   
    /  
    ClassLoader classLoader = getClass().getClassLoader();  
    File file = new File(classLoader.getResource(fileName).getFile());  
   
    try (Scanner scanner = new Scanner(file)) {  
   
        while (scanner.hasNextLine()) {  
            String line = scanner.nextLine();  
            result.append(line).append("\n");  
        }  
   
        scanner.close();  
   
    } catch (IOException e) {  
        e.printStackTrace();  
    }  
   
    return result.toString();  
   
  }  


调用方法为:obj.getFile("file/test.txt") 

2 使用apache commons的io包: 
  
Java代码  收藏代码
String result = "";  
   
    ClassLoader classLoader = getClass().getClassLoader();  
    try {  
        result = IOUtils.toString(classLoader.getResourceAsStream(fileName));  
    } catch (IOException e) {  
        e.printStackTrace();  
    }  
   
    return result;  
  }  

  可以看到apache commons io包真方便 

 

 

转载于:https://my.oschina.net/u/3278373/blog/983194

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值