JMeter - 如何读取 JSON 文件?

JMeter - How to read JSON file?

我在 JMeter 中使用 CSV 格式的数据文件。我们的副总裁想要将格式更改为 JSON。如何从磁盘读取 JSON 文件?

您至少有 2 个选项:

  1. 使用 HTTP Request 采样器和 file 协议,例如:

    JSON 文件基本上是纯文本文件,因此您可以使用 JSON Extractor or JSON Path Extractor to parse JSON data and store the result into JMeter Variables 供以后重用

    参考文献:

  2. 使用 JSR223 Test Elements and Groovy language. Groovy has built-in JSON support via JsonSlurper 以便您能够以编程方式解析 JSON 文件。

    参考文献: