我正在尝试从 http://tv.atmovies.com.tw/tv/attv.cfm?action=channeltime&channel_id=CH06获取标题
这是我的源代码的一部分:
Document doc = Jsoup.connect( theurl above ).get();
Element title = doc.select("title");
textview.setText(title);
当我尝试从中获取标题时,此代码可以工作www.yahoo.com
。但它不能与http://tv.atmovies.com.tw/tv/attv.cfm?action=channeltime&channel_id=CH06
为什么这样的网址一起使用?