본문 바로가기
IT/Java

[Java] - 자바 String 문자열 null 체크 및 치환하는 방법

by 차이나는 개발자 2021. 9. 28.
728x90
반응형

#자바 String  문자열 null 체크 및 치환하는 방법

 

 

#자바 null 체크 메소드

-param: str String

-param: replaceStr 대체할 문자열

-return: null이면 "", 아니면 str

 

 

#예시

public class test {

	public static String checkNull(String str) {
		return (str == null || str.equals("")) ? "" : str;
	}

	public static String checkNull(String str, String replaceStr) {
		return (str == null || str.equals("")) ? replaceStr : str;
	}

	public static void main(String[] args) {
		System.out.println(checkNull("hello")); // hello
		System.out.println(checkNull("")); // ""
		System.out.println(checkNull("java", "replaceStr")); // java
		System.out.println(checkNull("", "replaceStr")); // replaceStr
	}
}

 

 

 

728x90
반응형

댓글