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