我正在尝试在星号中的两个 Java 应用程序之间进行通信。现在我需要在通话中的两个通信通道之间共享一些文本数据。我已尝试遵循 Manager API 命令请帮助我在通话中的两个通道之间共享一些字符串/消息。
我试过以下
SendTextCommand se= new SendTextCommand("");
se.setText("Test_message");
ReceiveTextCommand re=new ReceiveTextCommand();
re.setTimeout(10);
并且
SetVariableCommand se=new SetVariableCommand("text", "27");
SetVarAction sv=new SetVarAction();
sv.setVariable("text");
sv.setValue("27");
GetVarAction gv=new GetVarAction();
gv.getVariable();
如果要添加任何行或可以使用任何新类,请建议我