public static void testRead(String confPath) throws IOException {
System.setProperty("line.separator", "/03");
BufferedReader brConf = new BufferedReader(new InputStreamReader(
new FileInputStream(confPath), "UTF-8"));
for (String line = brConf.readLine(); line != null; line = brConf.readLine()) {
System.out.println(line);
System.out.println("----------------");
brConf.close();
除'/03'外,业务还可能指定'/01'换行。具体使用什么看具体业务。
Java替换换行符
前端录入的信息,有换行符\r\n,后面拿到数据库存储的数据后需要在前端页面上换行予以显示。
String testStr = "换行\r\n换行";
String result = testStr.replaceAll("(\\r\\n|\\n|\\n\\r)","<br/>");