How I can parse the response of this request using JSOUP, I need to get data frome the table, when I look in source code I found just a static html, but how I can get data ?
EDIT :
ArrayList<String> downServers = new ArrayList<>();
Date date = new Date();
url = "http://billetterie.ctm.ma/site/get_voyages?nat=1&tov1=nat&aller=AS&ag_dep=001&ag_arr=002&datev=29-05-2016&dater=29-05-2016&nbp=1&tpay=MA&horr=non";
String URL1 = "http://billetterie.ctm.ma/site/select_voyages_aller?datev=29-05-2016&agen_dep=001&agen_dest=002&nbp=1&dater=29-05-2016&aller=AS&tpay=MA&q=1&_search=false&nd="+date.getTime()+"&rows=30&page=1&sidx=&sord=";
Document doc = null;
try {
response = Jsoup.connect(url).timeout(10000).method(Connection.Method.GET).execute();
Map<String, String> cookies = response.cookies();
doc = Jsoup.connect(URL1).timeout(10000).cookies(cookies).get();
;
} catch (IOException e) {
e.printStackTrace();
}