Oracle中的列,其中包含包含\n
的字符串,其返回的\\n
代替单个\n
。有什么方法可以获取数据库中的确切字符串吗?
//getting fileExposure from oracle db
List<FileExposure> fileExposure =dao.find(FileExposure.class,1);
//geting the string sample_data-->"this is a simple data\n for other features\n"
String sample_data=fileExposure.getSampleData();
//it returning "this is a simple data\\n for other features\\n"
最佳答案
sample_data.replaceAll("\\\\n", "\\n")