역슬래시 문자 치환 추가

main
이범준 1 year ago
parent 77b7002ea4
commit 09077e38bc

@ -223,6 +223,8 @@ public class MessageInterfaceController extends AbstractController {
String replacedArgValue = "";
//탭문자 치환
replacedArgValue = argValue.replaceAll("\t", " ");
//역슬래시문자 치환
replacedArgValue = replacedArgValue.replace("\\", "\\\\");
//개행문자 치환
if(databaseId.equals("mariadb") || databaseId.equals("mysql")){
replacedArgValue = forJsonText.replaceLineChangeForNuri2Maria(replacedArgValue);
@ -254,6 +256,8 @@ public class MessageInterfaceController extends AbstractController {
//탭문자 치환
replacedArgValue = argValue.replaceAll("\t", " ");
//역슬래시문자 치환
replacedArgValue = replacedArgValue.replace("\\", "\\\\");
//개행문자 치환
if(databaseId.equals("mariadb") || databaseId.equals("mysql")){
replacedArgValue = forJsonText.replaceLineChangeForNuri2Maria(replacedArgValue);

Loading…
Cancel
Save