我正在测试如何使用jni4net库从Java代码订阅C#事件,但到目前为止我没有使用过的示例。我在尝试发生事件时发送一组Body()对象。
C#代码:
public class LibEventHandler
{
// Event for updating the body frame
public delegate void UpdateBodyFrameEventHandler(object source, BodyDataEventArgs e);
public event UpdateBodyFrameEventHandler UpdateBody;
protected virtual void OnUpdateBody(BodyDataEventArgs bodies)
{
UpdateBodyFrameEventHandler handler = UpdateBody;
if (handler != null)
handler(this, bodies);
}
public void raiseUpdateBodyEvent(Body[] bodies)
{
OnUpdateBody(new BodyDataEventArgs() { Bodies = bodies });
}
}
/// <summary>
/// A class extending EventArgs. Specifies the type Body[] as the event argument for the UpdateBody event
/// </summary>
public class BodyDataEventArgs : EventArgs
{
public Body[] Bodies { get; set; }
}
Java代码:
public Start(){
//initialise jni4net
try {
Bridge.setVerbose(true);
Bridge.init();
Bridge.LoadAndRegisterAssemblyFrom(new File("testlib.j4n.dll"));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
//create a instance of the library's main class and get the object that has all the events
LibMain lib = new LibMain();
LibEventHandler evHandler = lib.getEventHandler();
//subscribe to the event UpdateBody
evHandler.addUpdateBody(new EventHandler(){
@Override
public void Invoke(system.Object sender, EventArgs e){
Hello();
}
});
}
private void Hello(){
System.out.println("Hello World! triggered by c# event");
}
java方面还没有使用C#事件给出的参数,但我只是想知道它是否会被触发。但是,这会抛出以下异常:
Exception in thread "main" System.ArgumentNullException: Value cannot be null.
Parameter name: method
at System.Delegate.CreateDelegate(Type type, Object firstArgument, MethodInfo method, Boolean throwOnBindFailure)
at System.Delegate.CreateDelegate(Type type, Object firstArgument, MethodInfo method)
at net.sf.jni4net.utils.Convertor.StrongJ2CpDelegate[TRes](JNIEnv env, JniLocalHandle obj)
at testlib.__LibEventHandler.UpdateBody0(IntPtr __envp, JniLocalHandle __obj, JniLocalHandle value)
at testlib.LibEventHandler.addUpdateBody(Native Method)
at testing.Start.<init>(Start.java:35)
at testing.Testing.main(Testing.java:24)
在另一个网站(下面的链接)上讨论了同样的例外情况,但据我所知,我在定义我的活动时没有使用任何泛型。有谁知道我哪里出错了?
MulticastDelegate for asynchronous callback from Java to DotNet
答案 0 :(得分:1)
事实证明,JNI4NET支持 NOT 支持委托事件。因此,解决方案是使用具有java端侦听器的接口事件系统。