目的
从json文件(result.txt 一行一个json)中提取 该json的pid字段 在文件need.txt 中行 // 即 每行json解析后提取pid看在不在need.txt里面
知识点: 1 scala 文件读写 2 play框架解析json
代码
package ceshi
import java.io.{File, PrintWriter}
import scala.io.source
import play.api.libs.json._
import scala.collection.mutable.ListBuffer
object ExtractData {
def main(args: Array[String]): Unit = {
val writer = new PrintWriter(new File("C:/Users/thomas.y/Desktop/tmp./提取结果.txt"))
// 项目需要的pid
val needList = Source.fromFile(raw"C:/Users/thomas.y/Desktop/tmp./need.txt").getLines().toList
println(needList)
/**
* name10
* name1
*/
// 所有pid数据 文本每行都是要给json
val jsonlines = Source.fromFile(raw"C:/Users/thomas.y/Desktop/tmp./result.txt").getLines().toList
/**
* {"title":"asdfasf","pid":"name1","value":"1212"}
* {"title":"dfgyjgxc","pid":"name3","value":"2323"}
*/
val resList: ListBuffer[String] = ListBuffer()
// 提取need.txt里面项目需要的pid内容
jsonlines.foreach(
x => x match {
case data: String if needList.contains((Json.parse(data) \ "pid").as[String]) => resList.append(data)
case _ =>
}
)
resList.sortBy(x => (Json.parse(x) \ "pid").as[String]).foreach(x => writer.write(x + "\n")) // 排序方便阅读
writer.close() // 不close会丢失缓冲区数据
// 最终结果样式 提取结果.txt
/**
* {"title":"asdfasf","pid":"name1","value":"1212"}
*/
}
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。