当前位置: 首页>>代码示例>>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;未经允许,请勿转载。