Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将如何通过 java 在 iTunes 中播放特定歌曲?
我假设我需要以某种方式连接到 iTunes 并使用带有特定参数的播放功能......谁能指出我正确的方向来学习如何做到这一点?
根据那个答案,没有API。Windows 只有一个 SDK(通过 COM)。在 Mac OS 中,iTunes 是通过 AppleScript(示例)控制的。
我知道为时已晚,但你可以使用苹果脚本编辑器。例如,
Runtime runtime = Runtime.getRuntime(); String[] args = {"osascript" , "-e" , "tell application \"iTunes\" to play"}; try{ Process process = runtime.exec(args); }catch (Exception ex) { }
这将在 iTunes 中播放一首歌曲