package com.example.sso.dao; import com.alibaba.fastjson.JSONObject; import com.example.sso.util.FDaDaUtil; public class GetUrl { public static void main(String[] args) throws Exception { JSONObject jsonObject = new JSONObject(); jsonObject.put("clientCorpId","j"); String jsonString = jsonObject.toJSONString(); String fddurl = FDaDaUtil.fddurl(jsonString); System.out.println(fddurl); } }