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


Java JSONArray.optBoolean方法代碼示例

本文整理匯總了Java中org.json.JSONArray.optBoolean方法的典型用法代碼示例。如果您正苦於以下問題:Java JSONArray.optBoolean方法的具體用法?Java JSONArray.optBoolean怎麽用?Java JSONArray.optBoolean使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.json.JSONArray的用法示例。


在下文中一共展示了JSONArray.optBoolean方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: initLogger

import org.json.JSONArray; //導入方法依賴的package包/類
private void initLogger(final JSONArray args, final CallbackContext callbackContext) {
    try {
        final String jsFileName = args.optString(0) != null ?
                args.optString(0) : DEFAULT_JS_FILENAME;
        final String lcFileName = args.optString(1) != null ?
                args.optString(1) : DEFAULT_LC_FILENAME;
        this.maxFileSizeInKB = args.optString(2) != null ?
                args.optInt(2) : DEFAULT_MAX_FILESIZE_IN_KB;
        this.filterBy = args.optString(3) == null ?
                null : args.optString(3).split(ARRAY_SEPARATOR);
        this.filterOut = args.optString(4) == null ?
                null : args.optString(4).split(ARRAY_SEPARATOR);
        this.enableCallback = args.optBoolean(5);

        if (jsFileName != null) {
            this.jsFile = new File(this.internalStorage, jsFileName);
            this.jsBak = FileTools.rollFile(this.jsFile, null, LOG_ROLLING_EXTENSION);
            this.jsCon = FileTools.rollFile(this.jsFile, LOG_CON_SUFFIX);

            if (this.jsFileWriter == null) {
                this.jsFileWriter = new JsFileWriter(this.jsFile, this.jsBak,
                        this.cordovaInstance, this.maxFileSizeInKB);
            }
        }

        if (lcFileName != null) {
            this.lcFile = new File(this.internalStorage, lcFileName);
            this.lcBak = FileTools.rollFile(this.lcFile, null, LOG_ROLLING_EXTENSION);
            this.lcCon = FileTools.rollFile(this.lcFile, LOG_CON_SUFFIX);
        }

        this.zipFile = new File(this.internalStorage, DEFAULT_ZIP_FILENAME);
        callbackContext.success();
    } catch (Exception e) {
        callbackContext.error(e.getMessage());
    }
}
 
開發者ID:kolbasa,項目名稱:cordova-logcat-filelogger,代碼行數:38,代碼來源:LogCatPlugin.java

示例2: getBoolean

import org.json.JSONArray; //導入方法依賴的package包/類
protected boolean getBoolean(JSONArray array, int index) {
    return array.optBoolean(index);
}
 
開發者ID:JackChan1999,項目名稱:letv,代碼行數:4,代碼來源:CommonParser.java


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