MockWebServer可以使用本地Json文件作为响应体吗?

时间:2017-01-10 04:25:25

标签: android json local mockwebserver

如何在MockWebServer中使用本地Json File作为响应主体?谢谢!

1 个答案:

答案 0 :(得分:1)

您可以将json文件流式传输到字节数组。 使用org.apache.commons.io.IOUtils来节省时间,然后将其作为String传递给新的MockResponse主体。

InputStream jsonStream = MyClass.class.getClassLoader().getResourceAsStream("file.json");
byte[] jsonBytes = IOUtils.toByteArray(jsonStream);
mockWebServer.enqueue(new MockResponse().setBody(new String(jsonBytes)));