我有一个带有字符串的文件,我想在每次 X 记录时读取它。我有两个问题:
- 我应该保存哪种类型的文件?(“记录。”)
如何从我的文件中读取 X 记录并将它们作为 HttpRequestBuilder 的 json 作为正文发送?例如:
val request: HttpRequestBuilder = Utils.createPostBodyRequest( "request", "localhost:8080/request", Map(Constants.Content_Type -> Constants.Application_Json), ElFileBody("records.json")) def createPostBodyRequest(reqName: String, url: String, headers: Map[String, String], body: Body): HttpRequestBuilder = { http(reqName) .post(url) .headers(headers) .body(body) }