⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jsonstring.java

📁 JSON使用源码,对于AJAX与服务器数据交换,采用JSON作为数据传输格式是个不错的选择
💻 JAVA
字号:
package org.json;/** * The <code>JSONString</code> interface allows a <code>toJSONString()</code>  * method so that a class can change the behavior of  * <code>JSONObject.toString()</code>, <code>JSONArray.toString()</code>, * and <code>JSONWriter.value(</code>Object<code>)</code>. The  * <code>toJSONString</code> method will be used instead of the default behavior  * of using the Object's <code>toString()</code> method and quoting the result. */public interface JSONString {	/**	 * The <code>toJSONString</code> method allows a class to produce its own JSON 	 * serialization. 	 * 	 * @return A strictly syntactically correct JSON text.	 */	public String toJSONString();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -