如何通过Java访问XBMC JSON接口?
我已经搜索了几个小时,但找不到我需要的基础知识。 :(
我从小处开始,现在我只想让这个 Java 程序联系 XBMC 的 JSON 接口并检索其中的音乐列表。
任何人都可以为我指出正确的方向吗?我将非常感激谢谢:)
编辑:我也对 JSON 的术语感到困惑,所以请放轻松。我认为正确的短语是“我正在尝试从服务器检索 JSON 对象,然后将其发回”?
I've been searching for hours and I can't find the basics I need. :(
I'm starting small, right now I just want to get this Java program to contact the JSON interface for XBMC and retrieve a list of Music on it.
Can anyone please point me in the right direction? I'd be very grateful. Thank you :)
EDIT: I am also confused as to the terminology of JSON, so go easy please. I think the correct phrase is "I am trying to retrieve a JSON object from the server, and then post one back"?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以你需要做一些事情。
1. 在 XBMC 服务器上启用 JSON RPC。
2. 获取用于 Java 的 JSON 库。 Json-simple 是一种非常简单的类型。
3. 使用 (a) http 或 (b) 直接 TCP 套接字连接连接到 XBMC。
(a) 查找如何使用 java.net.URLConnection 和 java.net.HttpURLConnection
(b) 查找如何使用 java.net.Socket [使用 Socket(InetAddress 地址, int port) 构造函数,其中地址 &端口是服务器的]
祝你好运,大卫。
So you'll need to do a few things.
1. Enable the JSON RPC on your XBMC server.
2. Get a JSON library to use with Java. Json-simple is a very minimal one.
3. Connect to the XBMC using either (a) http or (b) direct TCP socket connection.
(a) lookup how to use java.net.URLConnection and java.net.HttpURLConnection
(b) lookup how to use java.net.Socket [use the Socket(InetAddress address, int port) constructor where address & port is of the server]
Good luck, David.