JSONArray jsonArray = new JSONArray();
JSONObject jsonObject;
for (OrderItemsDTO orderItemsDTO : orderDTO.getItems()) {
    jsonObject = new JSONObject();
    jsonObject.put("im_code", orderItemsDTO.getSku());
    jsonObject.put("price", orderItemsDTO.getUnit_price());
    jsonObject.put("currency", orderItemsDTO.getCurrency());
    jsonObject.put("quantity", orderItemsDTO.getQty());
    jsonArray.add(jsonObject);
}
String itemsString = JSONUtil.toJsonStr(jsonArray);
System.out.println(itemsString);