我從本地服務器獲取此數據。如何將字符串拆分爲java中的子字符串
Bundle[{json={"productId":"4","unseenIds":[1,4,8]",
"id":"8","message":"You have a new request for your product"},
collapse_key=do_not_collapse}]
我有這個數據分成:
{"productId":"4","unseenIds":"[1,4,8]",
"id":"8","message":"You have a new request for your product"}
我怎樣才能做到這一點?
作爲數組的內部包? –
其完全是一個字符串 –
你的意思是,Bundle [{json = {「productId」:「4」,「unseenIds」:「[1,4,8]」,「id」:「8」,「message」:「您對您的產品有新的要求「},collapse_key = do_not_collapse}]是完全字符串的。 –