`

red5的invoke(String s,new Object[]{})

 
阅读更多

今天在做视频共享的时候需要用red5的反射方法,
	if(ic instanceof IServiceCapableConnection){
				IServiceCapableConnection is=(IServiceCapableConnection) ic;
				is.invoke("showvideo", new Object[]{});
			}

开始是这样写的,但是Object是没有值的,结果不能调用,alert之后才知道没有调用成功。
is.invoke("showvideo", new Object[]{“”});

要是没用东西可以写成这样。

最新的API里也没说什么    看来更多的需要自己去验证。

  • 大小: 14.1 KB
分享到:
评论

相关推荐

    C#技巧程序,写的不错呵,都是些高手的技巧

    MyList<string> strings = new MyList<string>(); strings.Add("Hello"); ``` 8. **枚举和switch表达式**:枚举类型用于表示一组相关的值,switch表达式则是C#7.0引入的新特性,提供了更简洁的代码: ```csharp ...

    串口通信——txt

    Me.Invoke(New EventHandler(AddressOf Sp_DataReceiving)) End Sub Public Sub Sp_DataReceiving(ByVal sender As Object, ByVal e As EventArgs) Dim strIncoming As String Try CheckBox1.Text = Str(Val...

    JDK5.0新特性 常量 、枚举、 for each、反射

    Object obj = clazz.newInstance(); Method method = clazz.getMethod("length"); int length = (int) method.invoke(obj); ``` 总结起来,JDK 5.0引入的常量注解、枚举、for each循环和反射特性,极大地丰富了Java...

    java代理模式

    public Object invoke(Object proxy, Method method, Object[] args) throws Throwable { before(); Object result = method.invoke(target, args); after(); return result; } private void before() { ...

    C-idioms-as:C#惯用​​语-pattan

    MyList<string> stringList = new MyList<string>(); stringList.Add("Hello"); ``` 以上只是一部分C#惯用语,实际开发中还有许多其他技巧和模式,如Lambda表达式、匿名方法、属性注入、异步编程等。通过不断学习和...

    java加强笔记

    for (String s : strings) { System.out.println(s); } } ``` ##### 5. 内省 - **内省**是指Java程序能够访问并处理自身结构的能力。通过`java.beans`包提供的API,可以实现对象状态的查询和修改。 - 例如:...

    整理后java开发全套达内学习笔记(含练习)

    BufferedReader s = new BufferedReader(new InputStreamReader(System.in)); String next; try{next = s.readLine();//此语句会抛异常,需处理 System.out.println("您输入了文字:" + next); }catch...

    jdk1.5/1.6/1.7新特性

    ReflectPoint pt1 = new ReflectPoint(3, 5); BeanInfo beanInfo = Introspector.getBeanInfo(pt1.getClass()); PropertyDescriptor[] pds = beanInfo.getPropertyDescriptors(); Object retVal = null; for ...

    day24_枚举_注解_反射.pdf

    Object instance = clazz.newInstance(); ``` 调用方法: ```java Method method = clazz.getMethod("myMethod", 参数类型列表); method.invoke(instance, 参数列表); ``` 【注解】 注解是一种元数据,它提供了将...

    出现问题a is defined高手帮忙

    // invoke the callback if provided if (G.callbacks.dragstart != null) { G.callbacks.dragstart(G.startX, G.startY); } return false; }; //鼠标拖动事件 DragZoomControl.prototype.drag_ = function(e...

    prototype1.6手册

    1. **对象扩展**:Prototype 提供了 `Object.extend` 方法,用于扩展对象属性和方法,使得 JavaScript 对象具有类继承的特性。 2. **DOM 操作**:Prototype 通过 `$` 函数提供了一种简洁的方式来选取和操作 DOM ...

    WPF单选按钮和枚举值

    .Invoke(this, new PropertyChangedEventArgs(propertyName)); } } ``` 3. 视图(View):在XAML中,为每个枚举值创建一个单选按钮,并将它们的`IsChecked`属性绑定到ViewModel中的`SelectedColor`属性。使用`Enum...

Global site tag (gtag.js) - Google Analytics