我有一個字符串數組,類似於字符串[]句子,它由每個索引中的一個句子組成,如This is the first message
,sentences[0]
和This is the second message
,sentences[1]
等等。我的Java代碼將信息發送到服務器進行情感分析是這樣的:如何將字符串數組轉換爲Json數組
OutputStreamWriter out = new OutputStreamWriter(connection.getOutputStream());
out.write(
"[ " +
"\"Can't wait for the movie\"," +
"\"Countdown! Only ten days remaining!\" " +
"]");
out.flush();
out.close();
如何通過字符串數組替換文本在上面的代碼,它的長度別回答n?
_如何將字符串數組添加到以下JSON中?_,其中是JSON?這個問題與JSON無關。 –
明白了,對不起。無論如何,我該如何將這個字符串數組轉換爲JSON數組? –