java - how to print SearchResult from the Youtube API result into textArea or TableView -
i'm developing jee desktop application , want integrate youtube api sample (cmd line) , show in javafx interfaces writing queryterm in text field wasn’t problem printing result of searchresult of api me hard part:
// call api , print results.
searchlistresponse searchresponse = search.execute(); list<searchresult> searchresultlist = searchresponse.getitems(); if (searchresultlist != null) { prettyprint(searchresultlist.iterator(), queryterm); }
how can print result of search class tableview or textfield in javafx. please suggestions?
Comments
Post a Comment