Package com.fins.org.json

Examples of com.fins.org.json.JSONObject


   
    return info;
  }
 
  public static JSONObject generatePageInfoJSON(PageInfo pageInfo){
    JSONObject pageInfoJS = new JSONObject();
    pageInfoJS.put("endRowNum", pageInfo.getEndRowNum());
    pageInfoJS.put("pageNum", pageInfo.getPageNum());
    pageInfoJS.put("pageSize", pageInfo.getPageSize());
    pageInfoJS.put("startRowNum", pageInfo.getStartRowNum());
    pageInfoJS.put("totalPageNum", pageInfo.getTotalPageNum());
    pageInfoJS.put("totalRowNum", pageInfo.getTotalRowNum());
    return pageInfoJS;
  }
View Full Code Here


  public static JSONObject Bean2JSONObject(Object bean){
    return Bean2JSONObject(bean, BeanUtils.getCacheGetterMethodInfo(bean.getClass()));
  }
 
  public static JSONObject Bean2JSONObject(Object bean, Object[] methodInfo ){
    JSONObject jsonObj=null;
    if (bean==null){
      jsonObj=new JSONObject(bean);
    }else{
      jsonObj = new JSONObject(
          bean,
          (String[]) methodInfo[0],
          (Method[]) methodInfo[1]);
    }
    return jsonObj;
View Full Code Here

    svo.setGender("1");
    svo.setMemo("testmemo asdasd ");
    svo.setName("fins");
    svo.setNo(new Integer(11));
   
    JSONObject jo=Bean2JSONObject(svo);
    System.out.println(jo.toString(4));
   
    StudentVO svo2 = (StudentVO)JSONObject2Bean(jo,StudentVO.class);
    System.out.println(svo2);
    JSONObject jo2=Bean2JSONObject(svo2);
    System.out.println(jo2.toString(4));
  }
View Full Code Here

    public void init(String gtJson) {
      if (StringUtils.isNotEmpty(gtJson)){
        try {
          LogHandler.debug(" AJAX IN : "+gtJson);
          jsonObject = new JSONObject(gtJson);
          action=jsonObject.getString("action");
          recordType=jsonObject.getString("recordType");
         
          initGridInfo();
         
View Full Code Here

    public void init() {
      init(getParameter(GT_JSON_NAME));
    }
   
    public void initGridInfo(){
      JSONObject modelJS;
      try {
        modelJS = jsonObject.getJSONObject("gridInfo");
        if (modelJS!=null){
          setGridInfo(ModelUtils.createGridInfo(modelJS));
        }
View Full Code Here

        //LogHandler.error(this,e);
      }
    }
   
    public void initPageInfo(){
      JSONObject modelJS;
      try {
        modelJS = jsonObject.getJSONObject("pageInfo");
        if (modelJS!=null){
          setPageInfo(ModelUtils.createPageInfo(modelJS));
        }
View Full Code Here

      JSONArray modelJS;
      try {
        modelJS = jsonObject.getJSONArray("sortInfo");
        if (modelJS!=null){
          for (int i=0;i<modelJS.length();i++){
            JSONObject si = modelJS.getJSONObject(i);
            sortInfo.add( ModelUtils.createSortInfo(si));
          }
        }
      } catch (JSONException e) {
        LogHandler.error(this,e);
View Full Code Here

      JSONArray modelJS;
      try {
        modelJS = jsonObject.getJSONArray("filterInfo");
        if (modelJS!=null){
          for (int i=0;i<modelJS.length();i++){
            JSONObject si = modelJS.getJSONObject(i);
            filterInfo.add( ModelUtils.createFilterInfo(si));
          }
        }
      } catch (JSONException e) {
        LogHandler.error(this,e);
View Full Code Here

      JSONArray modelJS;
      try {
        modelJS = jsonObject.getJSONArray("columnInfo");
        if (modelJS!=null){
          for (int i=0;i<modelJS.length();i++){
            JSONObject si = modelJS.getJSONObject(i);
            columnInfo.add(ModelUtils.createColumnInfo(si));
          }
        }
      } catch (JSONException e) {
        LogHandler.error(this,e);
View Full Code Here

    }
   
   
   
    public String getSaveResponseText(){
      JSONObject json=new JSONObject();
      try {
        json.put("success", success);
        json.put("exception", exception);
      } catch (JSONException e) {
        LogHandler.error(this,e);
      }
      return json.toString();
    }
View Full Code Here

TOP

Related Classes of com.fins.org.json.JSONObject

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.