标签: broadcast

如何从广播中执行正在运行的服务的方法?

在广播中,我想从服务 XYZ 调用非静态方法。该服务由接收器在启动时启动。有人有想法从这个正在运行的服务运行方法吗?该论坛中的一种解决方案是将方法设为静态并使用单例模式来执行。但还有其他方法吗?也许用活页夹?

//编辑例如我有以下类:

public class MyService extends Service{
   .....
   public void method(){
      //TODO
   }
}
Run Code Online (Sandbox Code Playgroud)
public class MyBroadcastReceiver extends BroadcastReceiver{
   .....
  public void onReceive(Context context, Intent intent) {
    String intentAction=intent.getAction();
    if(intentAction.equals(Intent.ACTION_BOOT_COMPLETED)){  
        //start service
        Intent serviceIntent = new Intent(context, MyService.class);
        context.startService(serviceIntent);

    }
    else{ 
     //TODO call method() in MyService
    }
}
Run Code Online (Sandbox Code Playgroud)

我怎样才能调用该方法method()?我知道我可以使用context.getSystemService()系统服务进行投射。但是我怎样才能得到自己的服务对象呢?

问候

service android communication broadcast

2
推荐指数
1
解决办法
1394
查看次数

android 上如何接收广播包

我正在尝试实现我的应用程序能够接收一些广播消息。一台设备向 192.168.2.255 发送消息。我可以在 Wireshark 上看到这有效。我的应用程序应该会收到这些消息,但它还不起作用。这是我的代码:

int port = 3123;

        // Create a socket to listen on the port.
        DatagramSocket dsocket = new DatagramSocket(port);
        dsocket.setBroadcast(true);

        // Create a buffer to read datagrams into. If a
        // packet is larger than this buffer, the
        // excess will simply be discarded!
        byte[] buffer = new byte[1024];

        // Create a packet to receive data into the buffer
        DatagramPacket packet = new DatagramPacket(buffer, buffer.length);

        // Now loop forever, waiting to receive packets and printing them. …
Run Code Online (Sandbox Code Playgroud)

android broadcast

2
推荐指数
1
解决办法
2791
查看次数

C#UDP广播客户端/服务器不起作用

我正在使用.NET 2.0并创建了一个相当简单的udp广播应用程序和UDP侦听器.

听众代码:

Socket listener = new Socket( AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp );
IPEndPoint localEndPoint = new IPEndPoint( IPAddress.Any, 11000 );
listener.Bind( localEndPoint );
EndPoint ep = (EndPoint)localEndPoint;
Console.WriteLine("Ready to receive…");
byte[] data = new byte[1024];
int recv = listener.ReceiveFrom(data, ref ep);
string stringData = Encoding.ASCII.GetString(data, 0, recv);
Console.WriteLine("received: {0} from: {1}", stringData, ep.ToString());
listener.Close();
Run Code Online (Sandbox Code Playgroud)

服务器代码:

int groupPort = 11000;
IPEndPoint groupEP = new IPEndPoint( IPAddress.Parse( "255.255.255.255" ), groupPort );

if ( radioButton2.Checked )
{
    groupEP = new IPEndPoint( IPAddress.Broadcast, groupPort …
Run Code Online (Sandbox Code Playgroud)

c# sockets udp broadcast

1
推荐指数
1
解决办法
2万
查看次数

MPI几个同时播出

我有一个2D处理器网格(3*3):

P00,P01,P02在R0,P10,P11,P12中,在R1中,P20,P21,P22在R2中.P*0在同一台计算机上.因此与P*1和P*2相同.

现在我想让R0,R1,R2同时调用MPI_Bcast从P*0广播到p*1和P*2.

我发现当我使用MPI_Bcast时,它只需要在一行中播放三倍的时间.

例如,如果我只在R0中调用MPI_Bcast,则需要1.00秒.但如果我在所有R [0,1,2]中调用三个MPI_Bcast,则总共需要3.00秒.这意味着MPI_Bcast无法并行工作.

是否有任何方法可以同时播放MPI_Bcast广播?(一个节点同时播放三个频道.)

谢谢.

broadcast mpi

1
推荐指数
1
解决办法
1789
查看次数

android.intent.action.BOOT_COMPLETED在启动时不会被触发

我有一个BroadcastReceiver,我试图检测系统启动何时完成,但接收器没有被解雇,或LogCat中没有任何想法?

AndroidManifest

<!--  SIM Card Receiver -->

<receiver android:name=".SIMChangeNotifierActivity" android:enabled="true" android:exported="false"> 
    <intent-filter android:priority="1001"> 
        <action android:name="android.intent.action.BOOT_COMPLETED"/> 
    </intent-filter> 
</receiver>
Run Code Online (Sandbox Code Playgroud)

广播接收器

public class SIMChangeNotifierActivity extends BroadcastReceiver {    

    public void onReceive(Context context, Intent intent)
    {
      if("android.intent.action.BOOT_COMPLETED".equals(intent.getAction()))
      {
         Log.e("TAG", "Boot completed"); 
          }
}
Run Code Online (Sandbox Code Playgroud)

android broadcast

1
推荐指数
1
解决办法
7426
查看次数

音频流WiFi到WiFi - 广播

我需要一个IOS应用程序,用户将启动应用程序,录制音频语音(通过设备麦克风),该语音将被广播给同一网络上的其他用户,所有这些都必须通过无线连接(WIFI)实现.

我做了一些可能的解决方案的研究,并尝试通过HTTP URL进行音频流,但这不可行,也涉及互联网.

我正在寻找你的意见,如果它是可行的那么什么是正确的方法,(我应该寻找哪些库和API)

我是iOS开发的新手,如果你能详细解释我真的很感激.

提前致谢.

broadcast audio-streaming wifi ios

1
推荐指数
1
解决办法
3084
查看次数

我的广播地址是什么?

我在一台网络上,我的机器是10.0.0.81,子网掩码是255.255.255.0.我想找出我的广播地址.那会是10.0.0.255吗?如果是这样,我该如何验证?我可以发送一个ping例子,看看它击中了哪台电脑?

ip networking ip-address broadcast subnet

1
推荐指数
1
解决办法
9654
查看次数

MobileVlcKit编译失败

嗨,我正在尝试使用MobileVLCKit.因为我正在使用如下的播客'MobileVLCKit'

pod 'MobileVLCKit'
Run Code Online (Sandbox Code Playgroud)

然后我编译我的项目它显示下面有很多错误是我的错误日志

  NOTE: a missing vtable usually means the first non-inline virtual member function has no definition.
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)

"std::basic_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >::find(wchar_t const*, unsigned long, unsigned long) const", referenced from:
  TagLib::String::find(TagLib::String const&, int) const in MobileVLCKit(tstring.cpp.o)
  TagLib::String::split(TagLib::String const&) const in MobileVLCKit(tstring.cpp.o)

  dash::mpd::BasicCMParser::parseCommonAttributesElements(dash::xml::Node*, dash::mpd::CommonAttributesElements*, dash::mpd::CommonAttributesElements*) const in MobileVLCKit(libdash_plugin_la-BasicCMParser.o)
Run Code Online (Sandbox Code Playgroud)

我尝试使用体系结构x86_64,但仍然显示很多错误.我不知道如何清除这些错误.任何人都可以帮助我

ffmpeg vlc broadcast libvlc ios

1
推荐指数
1
解决办法
470
查看次数

两个MPI一个接一个地播放

我想发送两个数组:double Aint B在MPI中使用广播(我正在使用C++).通常,communicator.Bcast读者的块,但不是作家.所以,如果我做了:

communicator.Bcast(A, a_len, ...)
communicator.Bcast(B, b_len, ...)
Run Code Online (Sandbox Code Playgroud)

可能会发生某些进程首先检索第二条消息并且事情会搞乱.

我想知道,对于那个问题,什么是好的,干净的解决方案?我应该使用派生数据类型/ MPI_Pack吗?看起来很难看.我可以以某种方式强制广播中使用TAG吗?

c++ broadcast mpi

1
推荐指数
1
解决办法
52
查看次数

计算广播地址时的数字错误

我在使用IP地址和子网掩码计算广播地址时遇到了麻烦.看起来很简单,应该只是广播= ip |〜mask,但它并不适合我的情况.我尝试使用+而不是OR运算符并使用unsigned int而不是signed,但它仍然不起作用.以下是执行此操作的代码部分,希望您能帮助我.作为IP地址和掩码[]的数组net []是以前在程序中使用的整数,并且正确输出并在我的程序内的其他操作中正常工作(将它们转换为二进制,通过使用&之间的计算网络地址等.)

int broadcast[4];    
   for(int i=0;i<4;i++) 
     broadcast[i]=net[i]|(~mask[i]);
Run Code Online (Sandbox Code Playgroud)

对于192.168.50.50和255.255.0.0作为net []和mask []我期望广播为192.168.255.255,但我得到-64.-88.-1.-1

c c++ mask broadcast subnet

1
推荐指数
1
解决办法
69
查看次数

标签 统计

broadcast ×10

android ×3

c++ ×2

ios ×2

mpi ×2

subnet ×2

audio-streaming ×1

c ×1

c# ×1

communication ×1

ffmpeg ×1

ip ×1

ip-address ×1

libvlc ×1

mask ×1

networking ×1

service ×1

sockets ×1

udp ×1

vlc ×1

wifi ×1