bold = style.getInt(0) == 1 ? true : false;
italic = style.getInt(1) == 1 ? true : false;
underline = style.getInt(2) == 1 ? true : false;
name = font.getString("name");
} catch (NumberFormatException e) {
throw new QQException(QQErrorCode.UNKNOWN_ERROR, e);
} catch (JSONException e) {
throw new QQException(QQErrorCode.JSON_ERROR, e);
}
}