gpt4 book ai didi

kotlin - 如何从 Kotlin 的资源中读取文本文件?

转载 作者:IT老高 更新时间:2023-10-28 13:26:18 24 4
gpt4 key购买 nike

我想用 Kotlin 编写一个 Spek 测试。测试应该从 src/test/resources 文件夹中读取一个 HTML 文件。怎么做?

class MySpec : Spek({

describe("blah blah") {

given("blah blah") {

var fileContent : String = ""

beforeEachTest {
// How to read the file file.html in src/test/resources/html
fileContent = ...
}

it("should blah blah") {
...
}
}
}
})

最佳答案

val fileContent = MySpec::class.java.getResource("/html/file.html").readText()

关于kotlin - 如何从 Kotlin 的资源中读取文本文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42739807/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com