当前位置: 首页>>代码示例>>Java>>正文


Java JSONException.printStackTrace方法代码示例

本文整理汇总了Java中org.codehaus.jettison.json.JSONException.printStackTrace方法的典型用法代码示例。如果您正苦于以下问题:Java JSONException.printStackTrace方法的具体用法?Java JSONException.printStackTrace怎么用?Java JSONException.printStackTrace使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.codehaus.jettison.json.JSONException的用法示例。


在下文中一共展示了JSONException.printStackTrace方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getEvents

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
public Map<String, IonEvent> getEvents() {
	Map<String, IonEvent> events = new HashMap<String, IonEvent>();
	try {
		JSONObject jsonEvents = jsonBean.getJSONObject(Key.events.name());
		@SuppressWarnings("unchecked")
		Iterator<String> it = jsonEvents.keys();
		while (it.hasNext()) {
			String pkey = it.next();
			if (!pkey.isEmpty()) {
				Object ob = jsonEvents.get(pkey);
				if (ob instanceof JSONObject) {
					IonEvent event = new IonEvent((JSONObject)ob);
					event.setName(pkey);
					events.put(event.getName(), event);
				}
			}
		}
	} catch (JSONException e) {
		e.printStackTrace();
	}
	return events;
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:23,代码来源:IonBean.java

示例2: readPropertyModels

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
private void readPropertyModels(JSONObject root) {
	try {
		JSONObject props = root.getJSONObject("Props");
		@SuppressWarnings("unchecked")
		Iterator<String> it = props.keys();
		while (it.hasNext()) {
			String key = it.next();
			if (!key.isEmpty()) {
				IonProperty property = new IonProperty(props.getJSONObject(key));
				property.setName(key);
				pCache.put(key, property);
			}
		}
	} catch (JSONException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:19,代码来源:ComponentManager.java

示例3: getProperties

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
public Map<String, IonProperty> getProperties() {
	Map<String, IonProperty> properties = new HashMap<String, IonProperty>();
	try {
		JSONObject jsonProperties = jsonBean.getJSONObject(Key.properties.name());
		@SuppressWarnings("unchecked")
		Iterator<String> it = jsonProperties.keys();
		while (it.hasNext()) {
			String pkey = it.next();
			if (!pkey.isEmpty()) {
				Object ob = jsonProperties.get(pkey);
				if (ob instanceof JSONObject) {
					IonProperty property = new IonProperty((JSONObject)ob);
					property.setName(pkey);
					properties.put(property.getName(), property);
				}
			}
		}
	} catch (JSONException e) {
		e.printStackTrace();
	}
	return properties;
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:23,代码来源:IonBean.java

示例4: setValue

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
public void setValue(Object value) {
	try {
		jsonProperty.put(Key.value.name(), value);
	} catch (JSONException e) {
		e.printStackTrace();
	}
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:8,代码来源:IonProperty.java

示例5: isComposite

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
public boolean isComposite() {
	try {
		return jsonProperty.getBoolean(Key.composite.name());
	} catch (JSONException e) {
		e.printStackTrace();
		return false;
	}
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:9,代码来源:IonProperty.java

示例6: writeXml

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
@Override
public Node writeXml(Document document) throws Exception {
	Element self = document.createElement(getClass().getSimpleName());
	JSONObject jsonObject = new JSONObject();
	try {
		jsonObject.put("mode", mode.name().toLowerCase());
		jsonObject.put("value", getSmartValue());
	} catch (JSONException e) {
		e.printStackTrace();
	}
	self.setTextContent(jsonObject.toString());
	return self;
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:14,代码来源:MobileSmartSourceType.java

示例7: getDescription

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
public String getDescription() {
	try {
		return jsonBean.getString(Key.description.name());
	} catch (JSONException e) {
		e.printStackTrace();
		return "description";
	}
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:9,代码来源:IonBean.java

示例8: setName

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
protected void setName(String name) {
	try {
		jsonBean.put(Key.name.name(), name);
	} catch (JSONException e) {
		e.printStackTrace();
	}
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:8,代码来源:IonBean.java

示例9: getCategory

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
public String getCategory() {
	try {
		return jsonProperty.getString(Key.category.name());
	} catch (JSONException e) {
		e.printStackTrace();
		return "category";
	}
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:9,代码来源:IonProperty.java

示例10: IonConfig

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
public IonConfig(JSONObject jsonOb) {
	this();
	for (Key k: Key.values()) {
		if (jsonOb.has(k.name())) {
			try {
				jsonConfig.put(k.name(), jsonOb.get(k.name()));
			} catch (JSONException e) {
				e.printStackTrace();
			}
		}
	}
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:13,代码来源:IonConfig.java

示例11: getComputedStyle

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
public String getComputedStyle() {
	try {
		return getComputedContents().getString("style");
	} catch (JSONException e) {
		e.printStackTrace();
	}
	return "";
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:9,代码来源:PageComponent.java

示例12: getIcon16

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
public String getIcon16() {
	try {
		return jsonBean.getString(Key.icon16.name());
	} catch (JSONException e) {
		e.printStackTrace();
		return "default_color_16x16.png";
	}
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:9,代码来源:IonBean.java

示例13: initJsonComputed

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
private JSONObject initJsonComputed() {
	JSONObject jsonObject = null;
	try {
		jsonObject = new JSONObject()
					.put("style", "")
					.put("theme", "")
					.put("route", "")
					.put("template", "");
	} catch (JSONException e) {
		e.printStackTrace();
	}
	return jsonObject;
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:14,代码来源:ApplicationComponent.java

示例14: doComputeContents

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
protected synchronized void doComputeContents() {
	try {
		JSONObject newComputedContent = initJsonComputed();
		
		newComputedContent.put("style", computeStyle());
		newComputedContent.put("theme", computeTheme());
		newComputedContent.put("route", computeRoute());
		newComputedContent.put("template", computeTemplate());
		
		computedContents = newComputedContent;
		
	} catch (JSONException e) {
		e.printStackTrace();
	}
}
 
开发者ID:convertigo,项目名称:convertigo-engine,代码行数:16,代码来源:ApplicationComponent.java

示例15: indexOntology

import org.codehaus.jettison.json.JSONException; //导入方法依赖的package包/类
@POST
@Consumes(MediaType.WILDCARD)
@Produces(MediaType.APPLICATION_JSON)
public Response indexOntology(IndexingJobInput input){
	
	ResponseBuilder responseBuilder = null;
	
	
	try {
		String jid = ontonetHub.indexOntology(input);
		URI location = URI.create(getPublicBaseUri() + "jobs/" + jid);
		
		JSONObject jsonObject = new JSONObject();
		try {
			jsonObject.put("monitoringService", location.toString());
			jsonObject.put("ontologyId", jid);
		} catch (JSONException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}
		
		responseBuilder = Response.ok(jsonObject.toString());
		
	} catch (OntologyAlreadyExistingException e1) {
		responseBuilder = Response.status(Status.CONFLICT);
	}
	
	return responseBuilder.build();
	
}
 
开发者ID:teamdigitale,项目名称:ontonethub,代码行数:31,代码来源:OntonethubIndexingResource.java


注:本文中的org.codehaus.jettison.json.JSONException.printStackTrace方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。