前言
json的
解析对于一个web开发人员而言简直是太重要了好吗?最近在使用
Groovy写压测脚本,特来总结一下
Groovy是如何
解析json的。
json的简单
解析1 生成
json def
json = new
JsonBuilder()
json.state {
name "fulei.yang"
Groovy自带了转换JSON的功能,相关类都在groovy.json包下。本文参考自Groovy文档 Parsing and producing JSON。
首先我们定义两个简单的类。
class Person {
int id
String name
List<Book>...
import org.apache.poi.ss.usermodel.*
import org.apache.poi.xssf.usermodel.*
import java.io.File
def file = new File("example.xlsx")
def workbook = new XSSFWorkbook(file)
def sheet = workbook.getSheetAt()
sheet.each { row ->
row.each { cell ->
switch (cell.cellType) {
case CellType.NUMERIC:
println(cell.numericCellValue)
break
case CellType.STRING:
println(cell.stringCellValue)
break
case CellType.BOOLEAN:
println(cell.booleanCellValue)
break
case CellType.BLANK:
println(" ")
break
default:
println(" ")
break
希望能够帮到您。