我在控制器中有一个 Grails 动作。在这个动作中,我使用:
def url = "http://www.somedomain.com/image/test.jpg"
def requestFactory = new SimpleClientHttpRequestFactory()
def request = requestFactory.createRequest(uri, method)
...
def response = request.execute()
if(statusCode == HttpStatus.OK) {
def responseImage = response.body.text
}
这会在我的 response.body.text 对象中返回一个 jpg 图像。我不知道如何处理这个图像。如何将此图像转换为字节数组?