How to convert String value to Pointer<Byte> (Java, JNAerator)?

1.7k Views Asked by At

I have converted .dll library to JAR by using JNAerator. Now I need to call OpenTCPIPPort_V method which looks like this: public static short OpenTCPIPPort_V(Pointer<Byte > tcpPort, Pointer<Byte > IPAddr)

How to pass two string values to this method?

3

There are 3 best solutions below

0
On BEST ANSWER

There is a function from a String class called getBytes. Here is an example:

String example = "example, string";
byte[] bytes = example.getBytes();

What you need now is to put those byte[] values into your's Pointer. I think you can handle now.

0
On

I found solution. This is method Pointer<Byte> org.bridj.Pointer.pointerToCString(String string)

0
On

I tried pointerToCString for the TekVisa DLL (DLL to control measurement instruments from Tektronix) which did not work for opening an instrument session. The second answer in this thread is better but misses a detail: The byte array has to be terminated with a 0. My code below works. (The instrument variable is of type String and contains the instrument string, for instance "TCPIP::::INSTR".)

Interestingly, pointerToCString works when sending a command to the instrument, for instance viWrite("*IDN?").

  Pointer<Byte> pViString = Pointer.allocateBytes(instrument.length() + 1);
  byte[] instrumentBytes = instrument.getBytes();
  pViString.setBytes(instrumentBytes);
  pViString.setByteAtIndex(instrument.length(), (byte) 0);