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