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

'hasOwnProperty' in javascript -

python - ValueError: No axis named 1 for object type <class 'pandas.core.series.Series'> -

java - How to provide dependency injections in Eclipse RCP 3.x? -