首页| JavaScript| HTML/CSS| Matlab| PHP| Python| Java| C/C++/VC++| C#| ASP| 其他|
购买积分 购买会员 激活码充值

您现在的位置是:虫虫源码 > Java > jspot

jspot

  • 资源大小:38.78 kB
  • 上传时间:2021-06-30
  • 下载次数:0次
  • 浏览次数:0次
  • 资源积分:1积分
  • 标      签: java spotify

资 源 简 介

Welcome to JSpot - the Java client for the Spotify metadata API. This is a version .1 release that supports the search methods. See the JSpot Javadoc documentation Sample code: Print out the most popular tracks for the band Weezer: ``` Spotify spotify = new Spotify(); Result results = spotify.searchTrack("artist:weezer"); for (Track track : results.getItems()) { System.out.printf("%.2f %s // %s // %s ", track.getPopularity(), track.getArtistName(), track.getAlbum().getName(), track.getName()); } ```
VIP VIP
0.211851s