浏览代码

domain change

tobby48 5 年前
父节点
当前提交
b5e3aa68b0

+ 1
- 1
src/kr/co/swh/lecture/java/scene3/ParentClass.java 查看文件

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

+ 1
- 1
src/kr/co/swh/lecture/network/IpDisplay.java 查看文件

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

+ 1
- 1
src/kr/co/swh/lecture/network/yarl.py 查看文件

1
 from urllib.parse import urlparse
1
 from urllib.parse import urlparse
2
 from yarl import URL
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
 url = 'http://user:pass@example.com:8042/over/there?name=ferret#nose'
5
 url = 'http://user:pass@example.com:8042/over/there?name=ferret#nose'
6
 urllib_url = urlparse(url)
6
 urllib_url = urlparse(url)
7
 yarl_url = URL(url)
7
 yarl_url = URL(url)

+ 1
- 1
src/kr/co/swh/lecture/python/pyqt5/webdownload.py 查看文件

1
 import urllib3
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
 fileName = url.split('/')[-1]
5
 fileName = url.split('/')[-1]
6
 u = urllib3.PoolManager().request('GET', url)
6
 u = urllib3.PoolManager().request('GET', url)