1.JSON.toJSONString(new byte[]{0,4,8}); //result is "AAQI"2.JSON.toJSON(new byte[]{0,4,8}).toString(); //result is "[0,4,8]"
What I need is the second result, how to use JSON.toJSONString method, or I must have to use the second method?
dsf9zpds1#
1条答案
按热度按时间dsf9zpds1#