如果我代码里写的是system.getproperty("core-site.location"),-Dcore-site.location=your_file_path,如果想获取的文件在resources里,your_file_path怎么写
时间: 2024-02-21 19:57:07 浏览: 39
Get File Path
如果您使用 `-Dcore-site.location=your_file_path` 参数启动 Java 应用程序,并且要获取 resources 目录下的文件路径,可以使用以下代码:
```java
String filePath = getClass().getClassLoader().getResource("your_file_name").getPath();
```
其中,`your_file_name` 是您要获取的文件名。请注意,上述代码中的 `your_file_name` 只是文件名,不包括路径。如果文件位于 resources 目录下的子目录中,则需要相应地更改文件路径。
阅读全文