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
- thread
- 스프링부트
- 파이썬
- array
- JS
- join()
- StringBuilder
- c#
- event
- Dict
- JavaScript
- Docker Desktop
- 메소드
- Swing
- SpringBoot
- docker
- 객체
- Python
- 프로그래머스스쿨
- 자바
- 클래스
- class
- 저장소
- 배열
- SSL
- AssertJ
- synchronized
- 자바스크립트
- GIT
- Java
Archives
- Today
- Total
목록URL (1)
정리노트

package shapeTest;import java.io.IOException;import java.net.InetAddress;import java.net.UnknownHostException;public class ShapeTest { public static void main(String[] args) throws IOException { String hostName = "www.naver.com"; try { InetAddress address = InetAddress.getByName(hostName); InetAddress myAddress = InetAddress.getLocalHost(); System.out.println("IP주소: " + address.getHostAd..
프로그래밍/Java
2023. 2. 7. 16:16