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

Popular posts from this blog

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -