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")

09-30 10:52