System.getProperty(“line.separator”)对于Android来说是“\ n”

时间:2012-10-20 10:21:35

标签: java android linux httpresponse

我的疑问是Android网络操作的System.getProperty("line.separator")"\n"是否相同。 我的意思是说。我将从某个服务器获得行分隔响应,因此最好使用System.getProperty("line.separator")"\n"

reffred Carriage returns/line breaks with \n in strings in Android但仍不确定网络操作。

1 个答案:

答案 0 :(得分:10)

如果您获得行分隔响应,请使用BufferedReader.readLine()读取每一行,然后使用System.getProperty("line.separator"),如果要将换行符插入字符串中。