| 12345678910111213141516171819202122232425262728293031323334 |
- package kr.co.swh.lecture.network;
-
- import java.net.MalformedURLException;
- import java.net.URL;
-
- /**
- * <pre>
- * kr.co.swh.lecture.network
- * URLEx1.java
- *
- * 설명 :URL클래스 객체생성
- * </pre>
- *
- * @since : 2018. 12. 27.
- * @author : tobby48
- * @version : v1.0
- */
- public class URLEx1 {
- public static void main(String[] args) {
- URL opinion = null;
- URL homepage = null;
- try {
- homepage = new URL("http://swhcoding.com:8080"); // 절대 경로
- opinion = new URL(homepage, "s/sw_network.html"); // 상대 경로
- } catch (MalformedURLException e) {
- System.out.println("잘못된 URL입니다.");
- }
- System.out.println("Protocol = " + opinion.getProtocol()); // 프로토콜
- System.out.println("host =" + opinion.getHost()); // 호스트 이름
- System.out.println("port =" + opinion.getPort()); // 포트번호
- System.out.println("path =" + opinion.getPath()); // 경로
- System.out.println("filename =" + opinion.getFile()); // 파일이름
- }
- }
|