ソースを参照

domain change

tobby48 5 年 前
コミット
b5e3aa68b0

+ 1
- 1
src/kr/co/swh/lecture/java/scene3/ParentClass.java ファイルの表示

@@ -17,7 +17,7 @@ public class ParentClass {
17 17
 	String date;
18 18
 	
19 19
 	ParentClass(String date){
20
-		url = "https://swhacademy.ga";
20
+		url = "https://swhcoding.com";
21 21
 		this.date = date;
22 22
 	}
23 23
 	void view() {

+ 1
- 1
src/kr/co/swh/lecture/network/IpDisplay.java ファイルの表示

@@ -18,7 +18,7 @@ public class IpDisplay {
18 18
 	public static void main(String[] args) {
19 19
 		try{
20 20
 			// 홈페이지 IP 정보를 출력
21
-			InetAddress [] ia = InetAddress.getAllByName("swhacademy.ga");
21
+			InetAddress [] ia = InetAddress.getAllByName("swhcoding.com");
22 22
 			for(InetAddress imsi : ia){
23 23
 				System.out.println("SWH IP : "+imsi.getHostAddress());
24 24
 			}

+ 1
- 1
src/kr/co/swh/lecture/network/yarl.py ファイルの表示

@@ -1,7 +1,7 @@
1 1
 from urllib.parse import urlparse
2 2
 from yarl import URL
3 3
 
4
-print(URL('https://swhacademy.ga')) # URL('swhacademy.ga')
4
+print(URL('https://swhcoding.com')) # URL('swhcoding.com')
5 5
 url = 'http://user:pass@example.com:8042/over/there?name=ferret#nose'
6 6
 urllib_url = urlparse(url)
7 7
 yarl_url = URL(url)

+ 1
- 1
src/kr/co/swh/lecture/python/pyqt5/webdownload.py ファイルの表示

@@ -1,6 +1,6 @@
1 1
 import urllib3
2 2
 
3
-url = "https://swhacademy.ga:8888/files/codeblocks-17.12mingw-setup.exe"
3
+url = "https://swhcoding.com:8888/files/codeblocks-17.12mingw-setup.exe"
4 4
 
5 5
 fileName = url.split('/')[-1]
6 6
 u = urllib3.PoolManager().request('GET', url)