16 lines
442 B
Java
16 lines
442 B
Java
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);
|
|
}
|
|
}
|