gpt4 book ai didi

java - 从数据库中获取包含\n的字符串,改为获取\\n

转载 作者:行者123 更新时间:2023-12-01 09:28:34 25 4
gpt4 key购买 nike

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

关于java - 从数据库中获取包含\n的字符串,改为获取\\n,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39645424/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com