반응형
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 |
Tags
- CMD
- 테이블
- Array
- js
- 배열
- list
- Maven
- json
- table
- date
- 이클립스
- input
- 이탈리아
- html
- Files
- ArrayList
- string
- Visual Studio Code
- windows
- Java
- CSS
- 자바스크립트
- 인텔리제이
- javascript
- Eclipse
- 자바
- Button
- vscode
- 문자열
- IntelliJ
Archives
- Today
- Total
목록trim() (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