Transmitting RTP Media Streams

来源:互联网 发布:java解析xml节点属性 编辑:程序博客网 时间:2024/05/17 13:06
 
传输RTP媒体流
 
要传输一个RTP媒体流,你使用一个Processor生成一个RTP解码数据源,然后要末创建一个SessionManager,要末创建一个DataSink来控制传输。
 
输入到Processor不仅能保存,也能实况转播拍摄到的数据。要保存数据,你使用一个MediaLocator在你要创建Processor时确定文件。要得到拍摄到的数据,用一个拍摄数据源作为输入传入Processor,就像在Capturing Media Data中描述的一样。
 
有两种方式可以传输RTP流:
 
使用一个具有RTP session参数的MediaLocator,通过调用Manager.createDataSink创建一个RTP DataSink。
使用一个session管理器创建发送流发送内容并控制传输。
 
如果你使用一个MediaLocator创建一个RTP DataSink,你可以只传输数据源中的第一个流。如果你想传输session中的多个RTP流,或者需要监听session统计表,你需要直接使用SessionManager。
 
不管你选择怎样去传输RTP流,你都需要:
 
1.用一个DataSource创建一个Processor去播放你想传输的数据。
2.配置Processor输出RTP编码数据。
3.把Processor作为一个DataSource从中得到输出数据。
 
配置Processor
 
要配置Processor产生RTP编码数据,你为每个轨迹设置RTP-specific格式,然后指定你要想要的输出内容描述符。
 
通过得到每个轨迹的TrackControl来设置轨迹格式,然后调用setFormat指定一个RTP-specific格式。通过设定格式的编码字符串到一个RTP-specific字符串,比如”AudioFormat.GSM_RTP”,  选定一个RTP-specific格式。这个Processor试图去加载一个支持这种格式的插件。如果没有安装合适的插件,有可能不支持特殊的RTP格式并抛出一个UnSupportFormatException异常。
 
用setOutputContentDescriptor设置输出格式。如果需要专门的多路技术,输出内容描述符能被设置为”ContentDescriptor.RAW”。音频和视频流不应该被交叉存取。如果Processor的轨迹不同于媒体类型,每个媒体流都在一个单独的RTP session中被传输。
 
重新得到Processor输出
 
一旦设置了一个Processor轨迹的格式并且实现了Processor,Processor的输出数据源能够被重新得到。通过调用getDataSource重新得到Processor的输出作为一个DataSource。这个返回的DataSource不仅是一个PushBufferDataSource,也是一个PullBufferDataSource,这取决于数据源。
 
输出DataSource使用createSendStream方法被连接到SessionManager。这个session 管理器必须在你创建发送流之前被初始化。
 
如果DataSource包含多个SourceStreams,每个SourceStream都被作为一个单独的RTP流被发送出去,不管是在同一个session还是在一个不同的session中。如果DataSource不仅包含音频流,也包含视频流,那么必须为音频和视频创建单独的RTP sessions。你也可以复制DataSource,然后在同一个session或不同的session中,发送复制的输出作为不同的RTP流。
 
控制包的延迟
 
包的延迟,也是被熟知的包化的时间间隔,是定期的播放网络中传输的每个RTP包。包化的时间间隔定义了最小的点对点的延迟;比较大的包在最上面引入少量报头而不是长时间的延迟并丢失重要信息。为非交互的应用程序比如演讲,或用一些宽带约束的链接,一个更高级的包化的延迟可能是合适的。
 
一个接收包应该接收包,播放音频数据的范围在0到200毫秒。(因为帧的音频编码,一个接收端通过帧的持续时间收集,应该用200毫秒来接收包。)这个约束允许接收端的合理的缓冲大小。每个包化的多媒体数字信号编解码器都有适合于它自己编码的一个默认的包时间间隔。
 
如果这个多媒体数字信号编解码器允许修改这个时间间隔,它有一个相应的PacketSizeControl。通过使用setPacketSize方法,包的时间间隔能够被改变或设置。
 
在多个RTP包中,为视频流要传输一个单独的视频帧。通过最大化网络的传输单元,每个包的大小都是有限的。这个参数也可以使用包的codec的PacketSizeControl的setPacketSize来设定。
 
用一个数据池来传输RTP数据
 
传输一个RTP数据最简单的途径是使用Manager.createDataSink方法创建一个RTP DataSink。你从Processor中传入输出DataSource和一个MediaLocator,这个MediaLocator描述了RTP session要流化的DataSource。(这个MediaLocator提供了RTP session的地址和端口)。
 
要控制传输,你在DataSink上调用start和stop方法。只有DataSource 中的第一个流被传输。
 
在Example 10-1中,拍摄了实况转播的视频而后使用一个DataSink来传输。
 
 
Example 10-1: Transmitting RTP Data using a DataSink (1 of 2)
        //首先找到摄像驱动,它将在8bit 8Khz拍摄线性的音频数据
       
         AudioFormat format= new AudioFormat(AudioFormat.LINEAR,
                                             8000,
                                             8,
                                             1);
 
         Vector devices= CaptureDeviceManager.getDeviceList( format);
 
         CaptureDeviceInfo di= null;
 
         if (devices.size() > 0) {
              di = (CaptureDeviceInfo) devices.elementAt( 0);
         }
         else {
             // exit if we could not find the relevant capturedevice.
             System.exit(-1);
         }
       
         // Create a processor for this capturedevice & exit if we
         // cannot create it
         try {
             Processor p = Manager.createProcessor(di.getLocator());
         } catch (IOException e) {
             System.exit(-1);
         } catch (NoProcessorException e) {
             System.exit(-1);
         }
 
        // configure the processor 
        processor.configure();
       
        // block until it has been configured
       
        processor.setContentDescriptor(
            new ContentDescriptor( ContentDescriptor.RAW));
        
        TrackControl track[] = processor.getTrackControls();
       
        boolean encodingOk = false;
       
        // Go through the tracks and try to program one of them to
        // output gsm data.
       
         for (int i = 0; i < track.length; i++) {
             if (!encodingOk && track[i] instanceof FormatControl) { 
                 if (((FormatControl)track[i]).
                     setFormat( new AudioFormat(AudioFormat.GSM_RTP,
                                                8000,
                                                8,
                                                1)) == null) {
 
                    track[i].setEnabled(false);
                 }
                 else {
                     encodingOk = true;
                 }
             } else {
                 // we could not set this track to gsm, so disable it
                 track[i].setEnabled(false);
             }
         }
        
         // At this point, we have determined where we can send out
         // gsm data or not.
         // realize the processor
         if (encodingOk) {
             processor.realize();
             // block until realized.
             // get the output datasource of the processor and exit
             // if we fail
             DataSource ds = null;
            
             try {
                 ds = processor.getDataOutput();
             } catch (NotRealizedError e) {
                 System.exit(-1);
             }
 
             // hand this datasource to manager for creating an RTP
             // datasink our RTP datasimnk will multicast the audio
             try {
                 String url= "rtp://224.144.251.104:49150/audio/1";
 
                 MediaLocator m = new MediaLocator(url);
 
                 DataSink d = Manager.createDataSink(ds, m);
 
                 d.open();
                 d.start();
             } catch (Exception e) {
                 System.exit(-1);
             }    
         }   
 
Session Manager来传输RTP数据
 
1.创建一个JMF Processor,然后设置每个轨迹的格式到RTP指定的格式。
2.从Processor中重新得到输出DataSource。
3.在一个先前创建和初始化的SessionManager上调用createSendStream,传进DataSource和一个流的索引。这个session管理器为指定的SourceStream创建一个SendStream。
4.通过调用SessionManager startSession启动session管理器。
5.通过SendStream方法控制传输。一个SendStreamListener能够被注册为监听SendStream上的事件。
 
创建一个发送流
 
在session管理器传输数据以前,它需要知道从哪里得到要传输的数据。当你构造一个新的SendStream时,从它将得到数据的DataSource来支持SessionManager。因为一个DataSource能包含多个流,你也需要指定这个session中要发送流的索引。通过传递不同的DataSource到createSendStream或通过指定不同的流的索此,你可以创建多个发送流。
 
Session管理器查询SourceStream的格式来确定这个格式中是否有一个已注册的有效载荷。如果数据的格式不是一个RTP格式,或者一个有效载荷类型不能为RTP格式定位,带有适当消息的UnSupportedFormatException将被抛出。使用SessionManager addFormat方法,动态的有效载荷可以被关联到一个RTP格式。
 
使用克隆的数据源
 
很多RTP用法的说明都包括在多个RTP session上发送一个流,或把一个流编码进多个格式然后在多个RTP session上发送他们。当一个已编码进一个单独格式中的流在多个RTP上被发送,从被拍摄的数据中,你需要从Processor中克隆DataSource的输出。通过创建一个克隆的DataSource经由Manager,然后在克隆的DataSource上调用getClone可以做到这一切。一个新的Processor能够通过每个克隆的DataSource创建,它的编码轨道是要求的格式,并且在一个RTP session上发送流。
 
使用合并的数据源
 
如果你想混合多个相同类型的媒体流(比如音频)到一个单独的源的输出流,你必须使用一个RTP混合器。如果这个流是开始从多个DataSource中被混合的,你开始从单独的DataSources创建一个MergingDataSource,然后把它放入SessionManager中创建流。
 
控制一个发送流
 
你使用RTPStream start和stop方法来控制一个SendStream。启动一个SendStream开始数据在网络中的传输,并且停止一个SendStream指示要中止数据的传输。要开始一个RTP传输,每个SendStream都需要被启动。
 
启动或停止一个发送流,在它的DataSource上会触发相应的事件。然而,当SendStream被停止时,如果这个DataSource被独立的启动,通过session管理器,数据将会被删除(PushBufferDataSource)或不pulled(PullBufferDataSource)。在这段时间,没有数据会在网络上被传输。
 
在一个单独的Session中发送出捕获到的音频
 
例10-2捕获到了一个mono音频数据并在一个RTP session发送出去。
 
Example 10-2: Sending captured audio out on a single session (1 of 3)
         // First, we'll need a DataSource that captures live audio:
       
         AudioFormat format = new AudioFormat(AudioFormat.ULAW,
                                              8000,
                                              8,
                                              1);
  
         Vector devices= CaptureDeviceManager.getDeviceList( format);
 
         CaptureDeviceInfo di= null;
         if (devices.size() > 0) {
              di = (CaptureDeviceInfo) devices.elementAt( 0);
         }
         else {
             // exit if we could not find the relevant capture device.
             System.exit(-1);
         }
         // Create a processor for this capture device & exit if we
         // cannot create it
         try {
             Processor p = Manager.createProcessor(di.getLocator());
         } catch (IOException e) {
             System.exit(-1);
         } catch (NoProcessorException e) {
             System.exit(-1);
         }
 
         // at this point, we have succesfully created the processor.
         // Realize it and block until it is configured.
       
         processor.configure();
       
         // block until it has been configured
       
         processor.setContentDescriptor(
             new ContentDescriptor( ContentDescriptor.RAW));
       
         TrackControl track[] = processor.getTrackControls();
       
        boolean encodingOk = false;
       
         // Go through the tracks and try to program one of them to
         // output ULAW_RTP data.
         for (int i = 0; i < track.length; i++) {
             if (!encodingOk && track[i] instanceof FormatControl) {
 
                 if (((FormatControl)track[i]).
                     setFormat( new AudioFormat(AudioFormat.ULAW_RTP,
                                                8000,
                                                8,
                                                1)) == null) {
 
                     track[i].setEnabled(false);
                 }
                 else {
                     encodingOk = true;
                 }
             }
             else { 
                 // we could not set this track to gsm, so disable it
                 track[i].setEnabled(false);
             }
         }
         // Realize it and block until it is realized.
         processor.realize();   
       
         // block until realized.
         // get the output datasource of the processor and exit
         // if we fail
       
         DataSource ds = null;
       
         try {
             ds = processor.getDataOutput();
         } catch (NotRealizedError e){
             System.exit(-1);
         }
        
         // Create a SessionManager and hand over the 
         // datasource for SendStream creation.
       
         SessionManager rtpsm = new com.sun.media.rtp.RTPSessionMgr();
        
         // The session manager then needs to be initialized and started:
         // rtpsm.initSession(...);
         // rtpsm.startSession(...);
 
         try {
             rtpsm.createSendStream(ds, 0);
         } catch (IOException e)      {
             e.printStackTrace();
         } catch( UnsupportedFormatException e) {
             e.printStackTrace();
         }
 
 
例10-3和例10-4都编码了捕获的音频并且在多个RTP sessions中发送了出去。在例10-3中,数据被编码为gsm ;在例10-4中,数据被编码为一些不同的格式。
 
Example 10-3: Sending RTP data out in multiple sessions (1 of 4)
         // First find a capture device that will capture linear audio
         // data at 8bit 8Khz
       
         AudioFormat format= new AudioFormat(AudioFormat.LINEAR,
                                             8000,
                                             8,
                                             1);
         Vector devices= CaptureDeviceManager.getDeviceList( format);
 
         CaptureDeviceInfo di= null;
 
         if (devices.size() > 0) {
              di = (CaptureDeviceInfo) devices.elementAt( 0);
         }
         else {
             // exit if we could not find the relevant capturedevice.
             System.exit(-1);
         }
        
         // Now create a processor for this capturedevice & exit if we
         // cannot create it
         try {
             Processor p = Manager.createProcessor(di.getLocator());
         } catch (IOException e) {
             System.exit(-1);
         } catch (NoProcessorException e) {
             System.exit(-1);
         }
       
         // configure the processor
         processor.configure();
       
         // block until it has been configured
       
         processor.setContentDescriptor(
             new ContentDescriptor( ContentDescriptor.RAW));
       
         TrackControl track[] = processor.getTrackControls();
       
         boolean encodingOk = false;
       
         // Go through the tracks and try to program one of them to
         // output gsm data.
       
         for (int i = 0; i < track.length; i++) {
             if (!encodingOk && track[i] instanceof FormatControl) {
 
                 if (((FormatControl)track[i]).
                     setFormat( new AudioFormat(AudioFormat.GSM_RTP,
                                                8000,
                                                8,
                                                1)) == null) {
 
                     track[i].setEnabled(false);
                 }
                 else {
                     encodingOk = true;
                 }
             } 
             else {
                 // we could not set this track to gsm, so disable it
                 track[i].setEnabled(false);
             }
         }
       
         // At this point, we have determined where we can send out
         // gsm data or not.
         // realize the processor
       
         if (encodingOk) {
             processor.realize();
       
             // block until realized.
       
             // get the output datasource of the processor and exit
             // if we fail
       
             DataSource origDataSource = null;
       
             try {
                 origDataSource = processor.getDataOutput();
             } catch (NotRealizedError e) {
                 System.exit(-1);
             }
       
             // We want to send the stream of this datasource over two
             // RTP sessions.
       
             // So we need to clone the output datasource of the 
             // processor and hand the clone over to the second
             // SessionManager
       
             DataSource cloneableDataSource = null;
             DataSource clonedDataSource = null;
       
             cloneableDataSource
               = Manager.createCloneableDataSource(origDataSource);
 
             clonedDataSource
               = ((SourceCloneable)cloneableDataSource).createClone();
       
             // Now create the first SessionManager and hand over the
             // first datasource for SendStream creation.
       
             SessionManager rtpsm1
               = new com.sun.media.rtp.RTPSessionMgr(); 
 
             // The session manager then needs to be
             // initialized and started:
             // rtpsm1.initSession(...);
             // rtpsm1.startSession(...);
             try {
                 rtpsm1.createSendStream(cloneableDataSource, // Datasource 1
                                     0);     
                                                 
             } catch (IOException e) {
                 e.printStackTrace();
            } catch( UnsupportedFormatException e) {
                 e.printStackTrace();
             }
 
             try {
                 cloneableDataSource.connect();
                 cloneableDataSource.start();
             } catch (IOException e) {
                 e.printStackTrace();
             }
       
             // create the second RTPSessionMgr and hand over the
             // cloned datasource
             if (clonedDataSource != null) {
                 SessionManager rtpsm2
                   = new com.sun.media.rtp.RTPSessionMgr();
 
                 // rtpsm2.initSession(...);
                 // rtpsm2.startSession(...);
 
                 try {
                     rtpsm2.createSendStream(clonedDataSource,0);
                 } catch (IOException e) {
                     e.printStackTrace();
                 } catch( UnsupportedFormatException e) {
                     e.printStackTrace();
                 }
             }
         }
         else {
             // we failed to set the encoding to gsm. So deallocate
             // and close the processor before we leave.
       
             processor.deallocate();
             processor.close();
         }
 
例10-4编码捕获的音频为一些格式,然后在多个RTP sessions中将它发送出去。它假定在输入DataSource中有一个流。
 
输入DataSource被克隆并且另一个processor被从这个克隆中创建。两个 Processors中的轨迹都单独的设置gsm和dvi,并且输出DataSources被发送到两个不同的RTP session管理器。如果轨道的数量多于1,这个例子试图设置一个轨道的编码为gsm而另一个为dvi。同一个DataSource被交给两个单独的RTPsession管理器,第一个流的索引设为0而第二个索引设为1(为了不同种类的接收器)。
 
Example 10-4: Encoding and sending data in multiple formats (1 of 3)
         // Find a capture device that will capture linear 8bit 8Khz
         // audio
 
         AudioFormat format = new AudioFormat(AudioFormat.LINEAR,
                                              8000,
                                              8,
                                              1);
  
         Vector devices= CaptureDeviceManager.getDeviceList( format);
 
         CaptureDeviceInfo di= null;
 
         if (devices.size() > 0) {
              di = (CaptureDeviceInfo) devices.elementAt( 0);
         }
         else {
             // exit if we could not find the relevant capture device.
             System.exit(-1);
         }
  
         // Since we have located a capturedevice, create a data
         // source for it.
 
         DataSource origDataSource= null;
 
         try {
             origDataSource = Manager.createDataSource(di.getLocator());
         } catch (IOException e) {
             System.exit(-1);
         } catch (NoDataSourceException e) {
            System.exit(-1);
         }
         
         SourceStream streams[] = ((PushDataSource)origDataSource)
                                    .getStreams();
       
         DataSource cloneableDataSource = null;
         DataSource clonedDataSource = null;
 
         if (streams.length == 1) {
             cloneableDataSource
               = Manager.createCloneableDataSource(origDataSource);  
             clonedDataSource
               = ((SourceCloneable)cloneableDataSource).createClone();
         }
         else {
             // DataSource has more than 1 stream and we should try to
             // set the encodings of these streams to dvi and gsm
         }
       
         // at this point, we have a cloneable data source and its clone,
         // Create one processor from each of these datasources.
       
        Processor p1 = null;
 
         try {
             p1 = Manager.createProcessor(cloneableDataSource);
         } catch (IOException e) {
             System.exit(-1);
        } catch (NoProcessorException e) {
             System.exit(-1);
         }
       
         p1.configure();
       
         // block until configured.
 
         TrackControl track[] = p1.getTrackControls();
         boolean encodingOk = false;
       
         // Go through the tracks and try to program one of them
         // to output gsm data
         for (int i = 0; i < track.length; i++) {
             if (!encodingOk && track[i] instanceof FormatControl) {
                 if (((FormatControl)track[i]).
                     setFormat( new AudioFormat(AudioFormat.GSM_RTP,
                                                8000,
                                                8,
                                                1)) == null) {
 
                     track[i].setEnabled(false);
                 }
                 else {
                     encodingOk = true;
                 }
             }
             else {
                 track[i].setEnabled(false);
             }
         }
         if (encodingOk) {
             processor.realize();
             // block until realized.
             // ...
             // get the output datasource of the processor
             DataSource ds = null;
 
             try {
                 ds = processor.getDataOutput();
             } catch (NotRealizedError e) {
                 System.exit(-1);
             }
           
             // Now create the first SessionManager and hand over the
             // first datasource for SendStream creation .
       
             SessionManager rtpsm1
               = new com.sun.media.rtp.RTPSessionMgr();
 
             // rtpsm1.initSession(...);
             // rtpsm1.startSession(...);
 
             try {
                 rtpsm1.createSendStream(ds, // first datasource
                                         0); // first sourcestream of
                                             // first datasource
             } catch (IOException e) {
                 e.printStackTrace();
             } catch( UnsupportedFormatException e) {
                 e.printStackTrace();
             }
         }
       
         // Now repeat the above with the cloned data source and
         // set the encoding to dvi. i.e create a processor with
         // inputdatasource clonedDataSource
         // and set encoding of one of its tracks to dvi.
         // create SessionManager giving it the output datasource of
         // this processor. 
 
RTPSocket传输RTP流
 
你也可以使用RTPSocket来传输RTP媒体流。要使用RTPSocket来传输,要用createDataSink通过传入一个MediaLocator来创建一个RTP DataSink,这个MediaLocator用一种RTP变量的新端口,”Ratibor”。管理器试图创建一个DataSink,从:
 
<protocol package-prefix>.media.datasink.rtpraw.Handler
 
这个管理器预备单独的正要在网络中传输的单独的包,然后发送他们到创建的RTPSocket,从:
<protocol package-prefix>.media.protocol.rtpraw.DataSource
 
这个在<protocol package-prefix>.media.protocol.rtpraw.DataSource上创建的RTPSocket是你自己实现的RTPSocket。JMF API没有定义一个默认的RTPSocket的实现。RTPSocket的实现依赖于你正使用的底层传输协议。你的RTPSocket必须位于<protocol package-prefix>.media.protocol.rtpraw.DataSource。
 
你有责任在底层网络上传输RTP包。
 
在以下的例子中,一个RTPSocket被用于传输捕获到的音频:
 
Example 10-5: Transmitting RTP data with RTPSocket (1 of 3)
         // Find a capture device that will capture linear audio
         // data at 8bit 8Khz
        
         AudioFormat format = new AudioFormat(AudioFormat.LINEAR,
                                              8000,
                                              8,
                                              1);
  
         Vector devices= CaptureDeviceManager.getDeviceList( format);
 
         CaptureDeviceInfo di= null;
         if (devices.size() > 0) {
              di = (CaptureDeviceInfo) devices.elementAt( 0);
         }
         else {
             // exit if we could not find the relevant capture device.
             System.exit(-1);
         }
 
         // Create a processor for this capturedevice & exit if we
         // cannot create it
        
         try {
             processor = Manager.createProcessor(di.getLocator());
         } catch (IOException e) {
             System.exit(-1);
         } catch (NoProcessorException e) {
             System.exit(-1);
         } 
         // configure the processor 
         processor.configure();
       
         // block until it has been configured
       
         processor.setContentDescriptor(
             new ContentDescriptor( ContentDescriptor.RAW));
       
         TrackControl track[] = processor.getTrackControls();
         boolean encodingOk = false;
       
         // Go through the tracks and try to program one of them to
         // output gsm data.
         for (int i = 0; i < track.length; i++) {
             if (!encodingOk && track[i] instanceof FormatControl) {
 
                 if (((FormatControl)track[i]).
                     setFormat( new AudioFormat(AudioFormat.GSM_RTP,
                                                8000,
                                                8,
                                                1)) == null) {
 
                     track[i].setEnabled(false);
                 }
                 else {
                     encodingOk = true;
                 }
             }
             else {
                 // we could not set this track to gsm, so disable it
                 track[i].setEnabled(false);
             }
         }
        
         // At this point, we have determined where we can send out
         // gsm data or not.
         // realize the processor
         if (encodingOk) {
             processor.realize();
             // block until realized.
             // get the output datasource of the processor and exit
             // if we fail
             DataSource ds = null;
             try {
                 ds = processor.getDataOutput();
             } catch (NotRealizedError e) {
                 System.exit(-1);
             }
 
             // hand this datasource to manager for creating an RTP
             // datasink
             // our RTP datasimnk will multicast the audio
             try {
                 MediaLocator m = new MediaLocator("rtpraw://");
                 // here, manager will look for a datasink in
                 // <protocol.prefix>.media.protocol.rtpraw.DataSink
                 // the datasink will create an RTPSocket at
                 // <protocol.prefix>.media.protocol.rtpraw.DataSource
                 // and sink all RTP data to this socket.
               
                 DataSink d = Manager.createDataSink(ds, m);
       
                 d.open();
                 d.start();
             } catch (Exception e) {
                 System.exit(-1);
             }  
         }   
 
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 微信弄丢了微信密码找不到了怎么办 微信背人用过找不到密码怎么办 超市的微信支付宝收付款怎么办 办理联华超市的会员储蓄卡怎么办 卡杰文具密码本如果忘记密码怎么办 火狐浏览器阻止要访问的网页怎么办 点我达被永久停用了怎么办 刚下的软件点开系统显示停用怎么办 红酒洋酒啤酒一起喝胃不舒服怎么办 儿子13岁初一不想读书了怎么办 微信不小心点了注册新账号怎么办 在京东买东西商家不发货怎么办 在京东买东西坏了商家不退货怎么办 苯扎氯铵溶液不小心喝了一口怎么办 苯扎氯铵溶液没有稀释就用了怎么办 牛油果切开了但是没熟怎么办 手机安装程序时解析包出错怎么办 因俩人不合适分手了很难受怎么办 中考结束后成绩不好的该怎么办 在京东自营药房买药没有处方怎么办 平安普惠账号不可以注销怎么办? 京东购物非自营货没到降价了怎么办 实体店商家不承认卖的是假货怎么办 衣服上的装饰圆扣掉下来了怎么办 没在京东买东西却收到退款怎么办 小米分期付款买的手机不要了怎么办 唯品会在线支付后商品有问题怎么办 红米手机把时间删了怎么办 红米桌面上的时间删了怎么办 华为手机玩游戏老是闪退怎么办 别人家无线网距离太远信号差怎么办 微信公众号交话费交错了怎么办 手机卡里还有话费销户的话怎么办 号码忘记交话费变成空号怎么办 多屏互动没办法隔空播放怎么办? 一个人长期受一件事的打击怎么办 物流信息显示快递被别人签收怎么办 现在打工的人被领导骂怎么办 加密狗丢了打不开软件了怎么办 手机微信可以打开网页打不开怎么办 手机中国网打开网速慢该怎么办