當前位置: 首頁>>代碼示例>>Java>>正文


Java Json.toJson方法代碼示例

本文整理匯總了Java中play.libs.Json.toJson方法的典型用法代碼示例。如果您正苦於以下問題:Java Json.toJson方法的具體用法?Java Json.toJson怎麽用?Java Json.toJson使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在play.libs.Json的用法示例。


在下文中一共展示了Json.toJson方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: getFlowApplicationNodes

import play.libs.Json; //導入方法依賴的package包/類
public static JsonNode getFlowApplicationNodes()
{
	List<String> appList = getJdbcTemplate().queryForList(GET_FLOW_TREE_APPLICATON_NODES, String.class);
	List<TreeNode> nodes = new ArrayList<TreeNode>();
	if (appList != null && appList.size() > 0)
	{
		for (String app : appList)
		{
			TreeNode node = new TreeNode();
			node.folder = true;
			node.lazy = true;
			node.title = app;
			node.level = 1;
			nodes.add(node);
		}
	}
	return Json.toJson(nodes);
}
 
開發者ID:thomas-young-2013,項目名稱:wherehowsX,代碼行數:19,代碼來源:FlowsDAO.java

示例2: getFlowProjectNodes

import play.libs.Json; //導入方法依賴的package包/類
public static JsonNode getFlowProjectNodes(String app)
{
	List<String> projectList = getJdbcTemplate().queryForList(GET_FLOW_TREE_PROJECT_NODES, String.class, app);
	List<TreeNode> nodes = new ArrayList<TreeNode>();
	if (projectList != null && projectList.size() > 0)
	{
		for (String project : projectList)
		{
			TreeNode node = new TreeNode();
			node.folder = true;
			node.lazy = true;
			node.title = project;
			node.parent = app;
			node.level = 2;
			nodes.add(node);
		}
	}
	return Json.toJson(nodes);
}
 
開發者ID:thomas-young-2013,項目名稱:wherehowsX,代碼行數:20,代碼來源:FlowsDAO.java

示例3: loadTreeJsonNode

import play.libs.Json; //導入方法依賴的package包/類
public static JsonNode loadTreeJsonNode(String key) {
    if (StringUtils.isNotBlank(key)) {
        String treeName = Play.application().configuration().getString(key);
        if (StringUtils.isNotBlank(treeName)) {
            try {
                return Json.parse(new FileInputStream(new File(treeName)));
            } catch (Exception e) {
                Logger.error(e.getMessage());
            }
        }
    }

    return Json.toJson("");
}
 
開發者ID:SirAeroWN,項目名稱:premier-wherehows,代碼行數:15,代碼來源:Tree.java

示例4: getFlowNodes

import play.libs.Json; //導入方法依賴的package包/類
public static JsonNode getFlowNodes(String app, String project)
{
	List<Map<String, Object>> rows = null;

	if (StringUtils.isBlank(project) || project.equalsIgnoreCase("root"))
	{
		rows = getJdbcTemplate().queryForList(GET_FLOW_TREE_FLOW_NODES_WITHOUT_PROJECT, app);
	}
	else
	{
		rows = getJdbcTemplate().queryForList(GET_FLOW_TREE_FLOW_NODES, app, project);
	}

	List<TreeNode> nodes = new ArrayList<TreeNode>();
	if (rows != null)
	{
		for (Map row : rows)
		{
			TreeNode node = new TreeNode();
			node.folder = false;
			node.lazy = false;
			node.title = (String)row.get("flow_name");
			node.parent = project;
			node.id = (Long)row.get("flow_id");
			node.level = 3;
			nodes.add(node);
		}
	}
	return Json.toJson(nodes);
}
 
開發者ID:thomas-young-2013,項目名稱:wherehowsX,代碼行數:31,代碼來源:FlowsDAO.java


注:本文中的play.libs.Json.toJson方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。