2017-01-10 9 views

답변

1

json 파일을 바이트 배열로 스트리밍 할 수 있습니다. org.apache.commons.io.IOUtils를 사용하여 시간을 절약 한 다음이를 문자열로 새로운 MockResponse 본문에 전달합니다.

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