我是使用属性文件还是仅使用平面文件来存储 JSP 中的字符串列表?

发布于 2024-12-21 01:06:43 字数 133 浏览 2 评论 0原文

我有一个 config.properties 文件,我的 JSP 页面使用它来获取配置。我需要创建一个白名单,其中只包含字符串。由于属性文件就像键值对,我是否需要另一个whitelist.txt或其他东西?或者我可以在属性文件本身中指定一个项目数组吗?

I have a config.properties file which my JSP page uses to get configurations from. I need to create a whitelist, which just contains strings. Since property files are like key value pairs do I need to have another whitelist.txt or something? or can I specify an array of items in properties file itself?

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

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

发布评论

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

评论(1

一袭白衣梦中忆 2024-12-28 01:06:43

通常在这种情况下,我使用一个简单的 .txt 文件并使用 commons-io 或 guava 读取它:

InputStream is = getClass().getResourceAsStream("/wordlist.txt"); //class-path relative
List<String> words = CharStreams.readLines(new InputStreamReader(is, "UTF-8"));

Usually in this cases I use a simple .txt file and read it with commons-io or guava:

InputStream is = getClass().getResourceAsStream("/wordlist.txt"); //class-path relative
List<String> words = CharStreams.readLines(new InputStreamReader(is, "UTF-8"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文