开发者

How can I access the XBMC JSON interface via Java?

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"?


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.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜