我的方法System.getProperty("line.separator")
无法在 Apache 服务器中运行,但似乎可以在本地 Eclipse 中使用。
实际实施
str2=str1.replace(System.getProperty("line.separator"), "CH(50)");
代码在eclipse中工作,但在服务器中没有,“line.separator不会被CH(50)取代。
答案 0 :(得分:4)
line.seperator :操作系统用于分隔文本文件中的行的序列
System.getProperty("line.seperator")
取决于操作系统。
您的服务器可能是Linux,您正在Windows中本地测试