Die paar Suchergebnisse in Google stellen mich nur vor mehr Rätsel.
Ich habe eine DLL für ein externes USB-Gerät und will dieses in Java ansteuern.
Unter Visual Basic sieht das so aus, die DLL hat 4 Methoden:
Code
Private Declare Sub StartDevice Lib "k8062d.dll" ()
Private Declare Sub SetData Lib "k8062d.dll" (ByVal Channel As Integer, ByVal Data As Integer)
Private Declare Sub SetChannelCount Lib "k8062d.dll" (ByVal Count As Integer)
Private Declare Sub StopDevice Lib "k8062d.dll" ()
gut. ich bin jetzt soweit:
Code
public class DmxLib
{
static
{
System.loadLibrary("K8062D");
}
native void StartDevice();
native void SetData(int channel, int data);
native void SetChannelCount(int count);
native void StopDevice();
}
Alles anzeigen
und jetzt? kann mir da wer helfen? irgendwie muss man diese klasse dann mit javah -jni in ein h-File kompilieren, und dann in Visual Studio ein neues Projekt anlegen, blablaa... i kenn mi net aus :confused: