gpt4 book ai didi

java - 朱尼特 : Get the input file from the file path in config folder

转载 作者:太空宇宙 更新时间:2023-11-04 13:44:40 27 4
gpt4 key购买 nike

@Test
public void testProviderDetails_ValidFile()
{

ClassLoader classLoader = getClass().getClassLoader();

// Throws null pointer exception here
File file = new File(classLoader.getResource("services/src/text/resources/config/test.txt").getFile());

String filePath = file.getAbsolutePath();

}

I want to get the file path which is placed in the src/test/resources/config folder.

但是正如我上面提到的,我遇到了空指针异常。有什么可以帮助我解决这个问题吗?

上面的代码中我遗漏了什么吗?

我也尝试过以下代码:

   File file = new File(classLoader.getResource("c:/dev/Provider_Services/services/src/text/resources/config/test.txt").getFile()); and

File file = new File(classLoader.getResource("test.txt").getFile());

File file = new File(classLoader.getResource("config/test.txt").getFile());

遇到同样的错误!!

最佳答案

我假设您正在使用 Maven 及其默认设置..因此,src/test/resources 已经在类路径中。因此,只需将 config/test.txt 作为 getresource 方法中的参数即可。它会起作用的。

关于java - 朱尼特 : Get the input file from the file path in config folder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30989243/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com