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


Java JSONObject.equals方法代碼示例

本文整理匯總了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;
    }
}
 
開發者ID:SUTFutureCoder,項目名稱:localcloud_fe,代碼行數:24,代碼來源:NetworkManager.java

示例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);
}
 
開發者ID:eviltnan,項目名稱:kognitivo,代碼行數:15,代碼來源:Utility.java

示例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;
    }
}
 
開發者ID:luck-fc,項目名稱:Interface_Json_Model,代碼行數:13,代碼來源:JsonUtil.java

示例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);
}
 
開發者ID:Jugendhackt,項目名稱:OpenVertretung,代碼行數:33,代碼來源:Db.java


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