2021-03-25优化代码

This commit is contained in:
tiansh
2021-03-25 09:39:38 +08:00
parent 498abcd83c
commit e18829136f
3 changed files with 3 additions and 10 deletions
+2 -9
View File
@@ -5,14 +5,8 @@ import java.net.URL;
import java.net.URLConnection;
public class TestUrl {
public static void main(String[] args) {
//testUrl("http://1.3.3.3/test");
//最好使用下面这个,上面那个超时时间不定,所以可能会导致卡住的情况
testUrlWithTimeOut("http://tc.hellohao.cn2/getNoticeText", 2000);
}
//最好使用下面这个,上面那个超时时间不定,所以可能会导致卡住的情况
// testUrlWithTimeOut("http://tc.hellohao.cn2/getNoticeText", 2000);
public static void testUrl(String urlString){
long lo = System.currentTimeMillis();
@@ -44,6 +38,5 @@ public class TestUrl {
url = null;
return false;
}
//System.out.println(System.currentTimeMillis()-lo);
}
}