android studio-如何从<script> html(从json)获取特定的字符串

时间:2018-11-02 03:24:17

标签: android html android-studio httpresponse

由于响应http ruquest,我有一个html脚本。

  
<脚本>
    logging_user = false;
    var static_id_cdn = 7;
    var html5player = new HTML5Player('html5video','41030861');
    如果(html5player){
        html5player.setVideoTitle('标题在这里');
        html5player.setSponsors(false);
        html5player.setVideoUrlLow('https:// blablabla');
        html5player.setVideoUrlHigh('https:// blablabla');
        html5player.setVideoHLS('https:// blablabla');
        html5player.setThumbUrl('https:// blablabla');
        html5player.setThumbUrl169('https:// blablabla');
        html5player.setRelated(video_related);
        html5player.setThumbSlide('https:// blablabla');
        html5player.setThumbSlideBig('https:// blablabla');
        html5player.setThumbSlideMinute('blablabla');
        html5player.setIdCDN('3');
        html5player.setIdCdnHLS('2');
        html5player.setFakePlayer(false);
        html5player.setDesktopiew(true);
      html5player.setSeekBarColor('#de2600');
        html5player.setUploaderName('mmm100');
        html5player.setVideoURL('/ video41030861 / title');
        html5player.setStaticDomain('static.blablabla.com');
        html5player.setHttps();
        html5player.setCanUseHttps();
        document.getElementById('html5video')。style.minHeight ='';
        html5player.initPlayer();
   }


 

我要如何使用仅'html5player.setVideoHLS(' https:// blablabla )的特定字符串使用Java?

0 个答案:

没有答案