什么是“资源”? SBT 项目中的文件夹有何用途?
在 SBT 项目文件夹层次结构中,我将 Scala 源代码放在 src/main/scala 中,将测试放在 src/tests/scala 中。我应该将什么放入 src/main/resources 和 src/tests/resources 中?
In SBT project folders hierarchy I am to put my Scala sources in src/main/scala and tests in src/tests/scala. What am I meant to put into src/main/resources and src/tests/resources?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
该目录中的所有内容都会打包到您调用
package
时创建的 .jar 中。这意味着您可以将其用于图像、声音文件、文本以及任何非代码但由您的代码使用的内容。
Everything in that directory gets packed into the .jar created when you call
package
.This means you can use it for images, sound files, text, anything that's not code but is used by your code.
以下是将资源中存储的文本文件复制到本地文件系统的示例:
Here's an example of copying a text file stored in resource to a local file system: