本文整理汇总了Java中org.json.JSONObject.equals方法的典型用法代码示例。如果您正苦于以下问题:Java JSONObject.equals方法的具体用法?Java JSONObject.equals怎么用?Java JSONObject.equals使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.json.JSONObject
的用法示例。
在下文中一共展示了JSONObject.equals方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: updateConnectionInfo
import org.json.JSONObject; //导入方法依赖的package包/类
/**
* Updates the JavaScript side whenever the connection changes
*
* @param info the current active network info
* @return
*/
private void updateConnectionInfo(NetworkInfo info) {
// send update to javascript "navigator.network.connection"
// Jellybean sends its own info
JSONObject thisInfo = this.getConnectionInfo(info);
if(!thisInfo.equals(lastInfo))
{
String connectionType = "";
try {
connectionType = thisInfo.get("type").toString();
} catch (JSONException e) {
LOG.d(LOG_TAG, e.getLocalizedMessage());
}
sendUpdate(connectionType);
lastInfo = thisInfo;
}
}
示例2: hasSameId
import org.json.JSONObject; //导入方法依赖的package包/类
public static boolean hasSameId(JSONObject a, JSONObject b) {
if (a == null || b == null || !a.has("id") || !b.has("id")) {
return false;
}
if (a.equals(b)) {
return true;
}
String idA = a.optString("id");
String idB = b.optString("id");
if (idA == null || idB == null) {
return false;
}
return idA.equals(idB);
}
示例3: hasKey
import org.json.JSONObject; //导入方法依赖的package包/类
/**
* 判断jsonData是否存在key的对象
* @param key 需要判断的key
* @return 是否存在
*/
public static boolean hasKey(JSONObject jsonData,String key) {
if (jsonData==null||!jsonData.has(key) || jsonData.equals("null")) {
return false;
} else {
return true;
}
}
示例4: Test
import org.json.JSONObject; //导入方法依赖的package包/类
public boolean Test()
{
int id = WriteVertretungsplan("RBSVertretung", "Ulm", "RBS");
WriteLehrer("Holzer", id);
WriteArt("Entfall");
WriteKurs("TGI12/2", "12", "Informatik", id);
int zugangsArt = WriteZugangsart("Admin");
WriteZugang("Timo", "4242", zugangsArt);
JSONObject object = new JSONObject();
object.put("Lehrer", "Holzer");
object.put("Fach", "Informatik");
object.put("Art", "Entfall");
object.put("Kurs", "TGI12/2");
object.put("Vertretungsplan", id);
object.put("StundeVon", 1);
object.put("StundeBis", 5);
object.put("Kommentar", "Geil alder");
object.put("Raum", "B7-1.09");
object.put("Datum", "01 01 2012");
JSONArray array = new JSONArray();
array.put(object);
String message = WriteZeilen(array);
JSONObject readObject = new JSONObject();
readObject.put("Vertretungsplan", id);
readObject.put("Benutzername", "Timo");
readObject.put("Passwort", "4242");
JSONArray read = Read(readObject);
return object.equals(read);
}