在 kotlin 中初始化字典
我怎样才能完成这段代码,以便我可以用我在另一个文件中编写的一些单词来初始化 Kotlin 中的字典?
val fisier= 文件("src/main/resources/Poveste_dictionar.txt") val Dictionar = hashMapOf
该文件如下所示: 曾经”到“Odata”, “在”到“ca”, “一”到“”, “时间”到“niciodata”, 从“那儿”到“阿科洛”, “是”到“福斯特”, “an”到“o”, “老”到“巴特拉纳”, “女人”到“femeie”,
How can I complete this code so I can initialize a dictionary in Kotlin with some words I wrote in another file?
val fisier= File("src/main/resources/Poveste_dictionar.txt")
val Dictionar = hashMapOf<String, String>(.........)
the file looks like that:
Once" to "Odata",
"upon" to "ca",
"a" to "",
"time" to "niciodata",
"there" to "acolo",
"was" to "a fost",
"an" to "o",
"old" to "batrana",
"woman" to "femeie",
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您的文件如下所示:
您可以使用以下代码创建一个包含所有关联的映射:
该代码片段会生成以下输出:
Assuming your file looks like this:
you can use the following code to create a map that contains all associations:
That snippet produces the following output: