java高並發測試代碼


package com.example.test;

import java.net.URL;
import java.net.URLConnection;
import java.util.concurrent.CountDownLatch;

/**
* Created with IDEA
* author:QinWei
* Date:2018/12/27
* Time:11:08
* 並發測試
*/
public class ConnectTest {

public static void main(String[] args) {
int count=1000000;
final CountDownLatch cdl=new CountDownLatch(count);
for (int i = 0; i < count; i++) {
new Thread(new Runnable() {
@Override
public void run() {
cdl.countDown();
try {
cdl.await();
} catch (InterruptedException e) {
e.printStackTrace();
}
try {
connect();
} catch (Exception e) {
e.printStackTrace();
}
}
}).start();
}

}

public static void connect() throws Exception {
final String urlStr="https://blog.52itstyle.com/";
URL url=new URL(urlStr);
URLConnection urlConnection = url.openConnection();
urlConnection.setDoInput(true);
urlConnection.setDoOutput(true);
urlConnection.connect();
System.out.println(urlConnection.getInputStream());
}
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM