Fixed s3 document issue

This commit is contained in:
rajesh
2024-10-23 00:14:01 +05:30
parent d02283519b
commit 19a54b6f75
9 changed files with 66 additions and 91 deletions

View File

@@ -308,4 +308,11 @@ public class Utils {
return new StringTokenizer(header, ",").nextToken().trim();
}
public static String replaceSpacesWithUnderscores(String content) {
if (content == null) {
return null;
}
return content.trim().replace(" ", "_");
}
}