Why am I getting UnsatisfiedLinkError in below program?

主宰稳场 提交于 2020-01-13 19:08:09

问题


Error is :Exception in thread "main" java.lang.UnsatisfiedLinkError: 
  jpcap.JpcapCaptor.getDeviceList()[Ljpcap/NetworkInterface;  at  
  jpcap.JpcapCaptor.getDeviceList(Native Method)  at 
  jcap.network.main(network.java:63)

import jpcap.*;
import jpcap.packet.*;
import java.io.*;
import jpcap.packet.TCPPacket.*;
import java.io.*;
import jpcap.JpcapCaptor.*;


class Network implements PacketReceiver {
    System.out.println(System.getProperty("java.library.path"));
    String sp=null;
    String dp=null;
    String window=null;
    String sequence=null;
    String acknowledge=null;
    FileWriter ff=null;
    String da=null;

    public void receivePacket(Packet pt) {
        try {
            if(pt instanceof TCPPacket) {
                TCPPacket tp=(TCPPacket)pt;
                ff=new FileWriter("da.txt",true);
                sp=new Integer(tp.src_port).toString();
                dp=new Integer(tp.dst_port).toString();
                window=new Integer(tp.window).toString();
                sequence=new Long(tp.sequence).toString();
                acknowledge=new Long(tp.ack_num).toString();
                byte[]dat=tp.data;
                da=new String(dat);
                ff.write("\r\n Source port is :-"+sp);    
                ff.write("\r\n Desination port is:-"+dp);
                ff.write("\r\n Sequence no is:-"+sequence);
                ff.write("\r\n Acknowledgement no  is:-"+acknowledge);
                ff.write("\r\n Status of rsv1 flag is:-"+tp.rsv1);
                ff.write("\r\n Status of rsv2 flag is:-"+tp.rsv2);
                ff.write("\r\n Status of Syn flag is:-"+tp.syn);
                ff.write("\r\n Status of Urg flag is:-"+tp.urg);
                ff.write("\r\n Status of Fin flag is:-"+tp.fin);
                ff.write("\r\n Data :-"+da);
                ff.write("\r\n");
                ff.write("\r\n");
                ff.close();
            }                 
        } catch(Exception e) {
            System.out.println(e.getMessage());
        }
   }  

   public static void main(String args[])throws IOException {
        int i;        
        try {
            NetworkInterface[] devices = JpcapCaptor.getDeviceList();

            //for each network interface
            for (i = 0; i < devices.length; i++) {
                //print out its name and description
                System.out.println(i+": "+devices[i].name + "(" +    
                        devices[i].description+")"+devices[i].loopback);
                //print out its datalink name and description
                System.out.println(" datalink: "+devices[i].datalink_name + "(" 
                        + devices[i].datalink_description+")");

                //print out its MAC address
                System.out.print(" MAC address:");
                for (byte b : devices[i].mac_address)
                    System.out.print(Integer.toHexString(b&0xff) + ":");
                System.out.println();

                //print out its IP address, subnet mask and broadcast address
                for (NetworkInterfaceAddress a : devices[i].addresses)
                    System.out.println(" address:"+a.address + " " + a.subnet + " "+ 
                            a.broadcast);
            }
            JpcapCaptor captor=JpcapCaptor.openDevice(devices[0], 65535, true, 20);
            captor.loopPacket(-1,new Network());
            captor.close();
        }
        catch(Exception e) {
            System.out.println(e.getMessage());
        }
    }
}

回答1:


UnsatisfiedLinkError means that the 'JpcapCaptor' native lib have not been loaded,

static{
      System.loadLibrary("JpcapCaptor.dll");
}



回答2:


The javadocs for the UnsatisfiedLinkError are pretty straightforward. you are missing some required lib for jcap.

In the future, the javadocs are a great place to start when you get an exception you don't understand.




回答3:


Install jpcap in your machine and then try to run your code. you can download jpcap.exe file from here http://jpcap.software.informer.com/0.7/




回答4:


I had the same problem after full compilation and linking of Jpcap (using eclipse on a Mac OS X computer). Turns out there are two versions of Jpcap: https://github.com/jpcap/jpcap (no JpCaptor), and a version with JpCaptor: https://github.com/mgodave/Jpcap. Maybe this helps.



来源:https://stackoverflow.com/questions/15028679/why-am-i-getting-unsatisfiedlinkerror-in-below-program

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!