1

嗨,我在移动应用程序中。

我在 phonegap(html5、JQuery、JS)中开发了一个应用程序,我想开发一个插件来打印到 BT 打印机。

我下载了打印机制造商的 SDK,并通过以下方式将相应的 .jar 文件导入到我的项目中:

将此库包含到您的项目中:

  1. 将相应的库文件从 SDK 包中拖到 Project Explorer 中

  2. 右键单击项目文件夹并选择属性

  3. 单击 Java 构建路径

  4. 单击库和添加 JAR 按钮

  5. 在主代码的顶部添加:

    导入 com.starmicronics.stario.StarIOPort;

    进口 com.starmicronics.stario.StarIOPortException;

    导入 com.starmicronics.stario.StarPrinterStatus;

  6. 现在您可以访问 StarIO 的所有方法了!

我创建了以下插件

js

var HelloPlugin = {

    callNativeFunction: function (success, fail, resultType) {
        return cordova.exec(success, fail, "com.tricedesigns.HelloPlugin", "nativeAction", [resultType]);
    }
};

爪哇

package com.tricedesigns;

import com.starmicronics.stario.StarIOPort;
import com.starmicronics.stario.StarIOPortException;
import com.starmicronics.stario.StarPrinterStatus;

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

import android.app.AlertDialog;
import android.app.AlertDialog.Builder;
import android.content.Context;
import android.util.Log;



public class HelloPlugin extends Plugin {

    public static final String NATIVE_ACTION_STRING="nativeAction";
    public static final String SUCCESS_PARAMETER="success";
    public static final String portName = "BT:";
    public static final String portSettings = "mini";

    @Override
    public PluginResult execute(String action, JSONArray data, String callbackId) {

         Log.d("HelloPlugin", "Hello, this is a native function called from PhoneGap/Cordova!");

         //only perform the action if it is the one that should be invoked
         if (NATIVE_ACTION_STRING.equals(action)) {

             String resultType = null;
             try {
                 resultType = data.getString(0);
             }
             catch (Exception ex) {
                 Log.d("HelloPlugin", ex.toString());
             }

             byte[] texttoprint = resultType.toString().getBytes();

             if (resultType.equals(SUCCESS_PARAMETER)) {

                 StarIOPort port = null;

                 return new PluginResult(PluginResult.Status.OK, "Yay, Success!!!");
             }
             else {
                 return new PluginResult(PluginResult.Status.ERROR, "Oops, Error :(");
             }
         }

         return null;
    }

}

这是没有问题的工作。

当我尝试包含以下对打印机 .jar 方法的调用时

port = StarIOPort.getPort(portName, portSettings, 10000, context);

我得到错误:状态=2 消息=找不到类。

我哪里错了???

4

0 回答 0