如何摆脱使用 apache.commons 中的 PropertiesConfiguration 导致的取消选中转换警告

发布于 2024-12-02 19:15:37 字数 415 浏览 0 评论 0原文

我不想使用 SuppressWarnings。我更喜欢编写不会产生任何抱怨的代码。我导入 apache.commons 类 PropertiesConfiguration。

该文件是使用文本编辑器创建的:

numbers = 0.222,0.333
animals = dog,cat

然后我将该文件读入 PropertiesConfiguration 的实例,假设它由“pc”引用。

                List<String> myStringList = pc.getList("animals");

对 getList() 的调用会产生有关未经检查的转换的编译时警告。在没有 SupressWarnings 的情况下如何改进这一点?

I prefer not to use SuppressWarnings. I prefer to write code that produces no complaints. I import the apache.commons class PropertiesConfiguration.

This file was created with a text editor:

numbers = 0.222,0.333
animals = dog,cat

I then read the file into an instance of PropertiesConfiguration, say it is referenced by "pc".

                List<String> myStringList = pc.getList("animals");

The call to getList() produces a compile-time warning about unchecked conversions. How do I improve this without SupressWarnings?

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

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

发布评论

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

评论(1

百善笑为先 2024-12-09 19:15:37

看起来 getList() 返回一个通用的 List 对象。使用 getStringArray() 来返回 String 数组怎么样?

It looks like getList() returns a generic List object. How about using getStringArray() instead which returns an array of Strings?

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