Java Intermec ITCScan无法加载

时间:2016-10-17 10:05:40

标签: java jvm intermec

我正在尝试为CK71 ATEX Intermec扫描仪实施条形码阅读器。操作系统 Windows Embedded Handheld 6.5 ,而作为JVM,我正在使用 phoneME Personal Profile 。我确实安装了DC_Java_WM6_Armv4i.cab(见图)

enter image description here

当我运行以下代码时出现以下错误ITCScan failed to load. java.lang.UnsatisfiedLinkError: no ITCScan.dll in java.library.path

如何修复此错误? 我已尝试过所有内容。

请注意,之前我使用CreME JVM并且一切正常。当我的30天评估版本过期时,我放弃了CreME。

.lnk文件的内容(而不是myProject.MainClass当然是实名):

255#"\Program Files\pMEA PP\bin\cvm.exe" "-Xopt:stdioPrefix=\My Documents,useConsole=false" -cp "\My Documents\Trasabilitate.jar;\My Documents\DataCollection.jar" myProject.MainClass

以下是完整的代码:

/*
 * BarcodeSample.java
 *
 * COPYRIGHT (c) 2004 INTERMEC TECHNOLOGIES CORPORATION, ALL RIGHTS RESERVED
 */

import java.awt.*;

import com.intermec.datacollection.*;


/**
 * This sample demonstrates using the BarcodeReader class to
 * read barcode data into a text field.
 */
public class BarcodeSample extends Frame implements BarcodeReadListener
{
    BarcodeReader bcRdr;
    TextField txtFieldData;
    Button btnClose;
    Label  labelStatus;

    public BarcodeSample(String aTitle)
    {
        super(aTitle);
        initComponents();

        try
        {
            bcRdr = new BarcodeReader();
            bcRdr.addBarcodeReadListener(this);
            // Starts asynchronous barcode read
            bcRdr.threadedRead(true);
        }
        catch (BarcodeReaderException e)
        {
            System.out.println(e);
            labelStatus.setText(e.getMessage());
            //*****
            //* Since m_labelStatus was not initialized with text,
            //* doLayout() is required on some platforms in order
            //* to show the new label text for the first setText()
            //* call.
            //*****
            doLayout();
        }
    }

    private void initComponents()
    {
        setLayout(new FlowLayout());
        txtFieldData = new TextField(20);
        add(txtFieldData);
        btnClose = new Button("Close");
        add(btnClose);
        labelStatus = new Label();
        add(labelStatus);

        btnClose.addActionListener(new java.awt.event.ActionListener()
        {
            public void actionPerformed(java.awt.event.ActionEvent e)
            {
                exitApp();
            }
        });
        btnClose.addKeyListener(new java.awt.event.KeyListener() {
            public void keyPressed(java.awt.event.KeyEvent e) {
                if (e.getKeyCode() == java.awt.event.KeyEvent.VK_ENTER)
                {
                    exitApp();
                }
            }
            public void keyReleased(java.awt.event.KeyEvent e) {}
            public void keyTyped(java.awt.event.KeyEvent e) {}
        });
    }

    /**
     * This method is invoked when the BarcodeReadEvent occurs.
     */
    public void barcodeRead(BarcodeReadEvent aBarcodeReadEvent)
    {
        /**
         * Uses EventQueue.invokeLater to ensure the UI update
         * executes on the AWT event dispatching thread. 
         */
        final String sNewData = aBarcodeReadEvent.strDataBuffer;
        EventQueue.invokeLater(new Runnable() {
            public void run() {
                // Displays the scanned data in the text field
                txtFieldData.setText(sNewData);             
            }
        });
    }

    public void exitApp()
    {
        if (bcRdr != null)
            bcRdr.dispose(); // Release system resources used by BarcodeReader
        setVisible(false);
        dispose(); // Dispose the frame
        System.exit(0);
    }

    public static void main(String[] args)
    {
        final BarcodeSample asyncReader =
            new BarcodeSample("Barcode Sample");
        asyncReader.addWindowListener(new java.awt.event.WindowAdapter()
        {
            public void windowClosing(java.awt.event.WindowEvent e)
            {
                asyncReader.exitApp();
            };
        });

        asyncReader.setVisible(true);
    }
}

1 个答案:

答案 0 :(得分:0)

我终于开始工作了。我发现我的java路径使用了代码段here(我将在下面发布它,以防链接出现问题):

$('#addr'+(i-1)).append(htmlToAppend);

然后我将我的ITCScan.dll添加到设置了java.library.path的文件夹中(在我的例子中,\ ProgramFiles \ pMEA PP \ bin。

我不知道这是否是最优雅的解决方案,但它确实有效。希望有一天能帮助别人。