반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- html
- CSS
- list
- vscode
- CMD
- 인텔리제이
- input
- 테이블
- javascript
- Array
- ArrayList
- json
- Eclipse
- Java
- 자바스크립트
- 문자열
- windows
- date
- string
- Button
- 배열
- 자바
- Maven
- js
- IntelliJ
- Visual Studio Code
- Files
- 이탈리아
- table
- 이클립스
Archives
- Today
- Total
목록공백체크 (1)
어제 오늘 내일
[Java] String(문자열) 빈 값 체크하기 (null, 공백)
문자열(String)이 null 또는 빈 공백인지 체크하는 방법을 소개합니다. 1. isEmpty() - Java 6 이상 isEmpty() 코드 public class StringEmptyCheck { public static void main(String[] args) { String str1 = null; String str2 = ""; String str3 = " "; System.out.println("str1 : " + isStringEmpty(str1)); // true System.out.println("str2 : " + isStringEmpty(str2)); // true System.out.println("str3 : " + isStringEmpty(str3)); // false } ..
IT/Java
2021. 4. 25. 02:34