Can't break the String line consisting of an array into separate links using .split

Issue I’m trying to get an ArrayList of mp3 links from a JavaScript array found on this page: Link The array looks like this: var audioPlaylist = new Playlist("1", [ {name:"The 4D Doodler", free:true, mp3:"http://www.archive.org/download/short_scifi_001_0711/ 4ddoodler_waldeyer_edm_64kb.mp3"}, {name:"Bread Overhead", free:true, mp3:"http://www.archive.org/download/short_scifi_001_0711/

Continue reading

Parse Binary Data

Issue I have an application that receives data in binary form through Bluetooth. I read the data using inputstream from a bluetoothsocket to a byte[]. But I must parse all messages, because they must have a given format to be

Continue reading