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
- grep
- Quartz
- IntelliJ
- maVen
- VirtualBox
- context
- port
- Eclipse
- xargs
- netsh
- plugin
- Windows
- ssh
- lsof
- profile
- tomcat
- JavaScript
- Mac
- web.xml
- Windows 10
- 줄바꿈 문자
- Source
- GIT
- import
- 네트워크
- find
- resource
- bash
- vscode
- 단축키
Archives
- Today
- Total
develog
String.valueOf(), String.toString() 본문
String str = null;
System.out.println((String) str); // 'null' text return
System.out.println(String.valueOf(str)); // 'null' text return
System.out.println(str.toString()); // NullPointException
'Dev > Java' 카테고리의 다른 글
enum (0) | 2013.06.26 |
---|---|
properties (0) | 2013.06.26 |
현재 클래스 경로 구하기 (0) | 2013.06.19 |
URLConnection vs HTTPClient (0) | 2013.06.19 |
java classpath command line 실행 (0) | 2013.06.12 |
Comments