另一个类的 getResource()

发布于 2024-08-01 17:12:12 字数 317 浏览 3 评论 0原文

我有一个 A 类,它获取一个配置文件:

this.getClass().getResource("cfgFile");

现在我创建了一个新的 B 类,它需要 A 的 cfgFile。 现在我正在做:

A.class.getResource("cfgFile");

但感觉不太对劲。

我愿意创建一个新类,例如 ABCfg 并将 cfgFile 添加到其资源路径中,但我不确定这是最好的方法。

最好的方法是什么?

谢谢阅读!

I am having a class A which gets a configuration file doing:

this.getClass().getResource("cfgFile");

Now I created a new class B who needs A's cfgFile. Right now I am doing:

A.class.getResource("cfgFile");

But it doesn't feel right.

I was willing to create a new class, something like ABCfg and adding the cfgFile to it's resource path, but I'm not sure it's the best way.

What's the best way to do this?

Thanks for reading!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

请止步禁区 2024-08-08 17:12:12

您可以通过将 getClass().getResource() 包装在 A 上的新静态方法中来封装它。 这样您将来就可以灵活地更改实现,而不会影响调用代码。

如果 A 除了提供配置信息之外还有其他职责,那么您最好为此创建一个新类。 不过,封装 getResource() 调用仍然值得做。

You could encapsulate this by wrapping the getClass().getResource() in a new static method on A. This way you have flexibility to change the implementation in the future without affecting calling code.

If A has other responsibilities over providing configuration information then you'd be better off creating a new class just for this. Encapsulating the getResource() call is still worth doing, though.

[旋木] 2024-08-08 17:12:12

您可能应该创建某种配置类或提供另一种获取配置数据的方法。 B 不应该依赖于知道 A 的配置在哪里,甚至不应该依赖于知道 A 的配置。 我建议您研究依赖注入

例如,B 可以用完成其工作所需的配置来构造,而不是让 B 负责知道在哪里可以找到其配置。 后一种方法会导致代码紧密耦合,从而变得越来越难以测试。

You should probably create some sort of Configuration class or provide another way for getting configuration data. B shouldn't rely on knowing where A's configuration is, or even that it need's A's configuration. I suggest you look into Dependency Injection.

For example, B could be constructed with the configuration that it needs to do its job, rather than making B responsible for knowing where to find its configuration. The latter approach leads to tightly coupled code which gets to be increasingly hard to test.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文