java - 调用phonegap插件时出现JSON错误。

标签 java android json cordova

当我开发 iphone/ipad 应用程序时,我使用了 ios 的屏幕截图插件。我现在正在创建该应用程序的 Android 版本,并尝试实现该插件的 Android 版本。

我的插件的 java 部分如下所示:

package org.apache.cordova;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

import org.apache.cordova.api.Plugin;
import org.apache.cordova.api.PluginResult;
import org.json.JSONArray;

import android.graphics.Bitmap;
import android.os.Environment;
import android.view.View;

public class Screenshot extends Plugin {
private PluginResult result = null;

@Override
public PluginResult execute(String action, JSONArray args, String callbackId) {
    // starting on ICS, some WebView methods
    // can only be called on UI threads
    super.cordova.getActivity().runOnUiThread(new Runnable() {
        public void run() {
            View view = webView.getRootView();

            view.setDrawingCacheEnabled(true);
            Bitmap bitmap = Bitmap.createBitmap(view.getDrawingCache());
            view.setDrawingCacheEnabled(false);

            try {
                File folder = new File(Environment.getExternalStorageDirectory(), "Pictures");
                if (!folder.exists()) {
                    folder.mkdirs();
                }

                File f = new File(folder, "screenshot_" + System.currentTimeMillis() + ".png");

                FileOutputStream fos = new FileOutputStream(f);
                bitmap.compress(Bitmap.CompressFormat.PNG, 100, fos);
                result = new PluginResult(PluginResult.Status.OK);

            } catch (IOException e) {
                result = new PluginResult(PluginResult.Status.IO_EXCEPTION, e.getMessage());
            }
        }
    });

    // waiting ui thread to finish
    while (this.result == null) {
        try {
            Thread.sleep(100);
        } catch (InterruptedException e) {
            // ignoring exception, since we have to wait
            // ui thread to finish
        }
    }

    return this.result;
}

}

我的 Screenshot.js 看起来像这样:

(function() {
/* Get local ref to global PhoneGap/Cordova/cordova object for exec function.
    - This increases the compatibility of the plugin. */
var cordovaRef = window.PhoneGap || window.Cordova || window.cordova; // old to new fallbacks

/**
 * This class exposes the ability to take a Screenshot to JavaScript
 */
function Screenshot() { }

/**
 * Save the screenshot to the user's Photo Library
 */
Screenshot.prototype.saveScreenshot = function() {
cordovaRef.exec(null, null, "Screenshot", "saveScreenshot", []);
};

    if (!window.plugins) {
        window.plugins = {};
    }
    if (!window.plugins.screenshot) {
        window.plugins.screenshot = new Screenshot();
    }

 })(); /* End of Temporary Scope. */

现在我尝试使用以下代码调用我的 Screenshot.js 函数:

function takeScreenShot() {
  cordovaRef.exec("Screenshot.saveScreenshot");
}   

但是我得到的只是 JSON 错误,我知道在某个地方我要求将其从 java 字符串转换为 JSON,但我只是不知道如何更改它。好吧,我认为这就是问题所在......

我的错误如下所示:

ERROR: org.json.JSONException: Value undefined of type java.lang.String cannot be converted to JSONArray.
Error: Status=8 Message=JSON error
file:///android_asset/www/cordova-2.0.0.js: Line 938 :  Error: Status=8 Message=JSON error
Error: Status=8 Message=JSON error at file:///android_asset_/www/cordova-2.0.0.js:938

谁能指导我哪里出错了?

最佳答案

问题解决者:

Phonegap Screenshot plugin in Cordova 2.0.0

西蒙·麦克唐纳提供的答案。

关于java - 调用phonegap插件时出现JSON错误。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12427555/

相关文章:

android - Flutterfire firebase_auth 不再有效

c# - Unity 将嵌套字典序列化为 JSON

java - 在 Java 中将 XML 转换为 JSON 的最快方法

java - float 范围怎么这么大,有 4 个字节 (±3.40282347E+38)

java - 使用 JPA,方法需要 60 秒

android - 在 Android Kotlin 中异步获取 URL

android - 尝试使用 Google Drive 示例时,Google Play 服务中出现对话框未知问题

java - 全局变量在按下后丢失的 ApplicationContext

java - telnet 关闭时 BufferedReader 或 Socket 不会引发异常

javascript - JSONArray JSP Ajax Jquery