??????????????????????????????????????????????????????????????????????
???????????????????????????????????????????????????????????????????jmeter?????????????????????????????????????ν??棬?????????????????????????????????????????????????????ν?????????jmeter???????????
????apache ab test????????????????ù????????о???t??????????????????????????????????????????????????????о?????????????????
????????????????????????????????????
????????????????httpclient?????????????commons-codec-1.6.jar??commons-logging-1.1.3.jar??fluent-hc-4.3.4.jar??httpclient-4.3.4.jar??httpclient-cache-4.3.4.jar??httpcore-4.3.2.jar??httpmime-4.3.4.jar??httpmime-4.3.4.jar??
???????????apache?????????http://hc.apache.org/downloads.cgi  ????????????

 

import java.io.File;
import java.io.IOException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.atomic.AtomicInteger;
import org.apache.http.HttpEntity;
import org.apache.http.client.methods.CloseableHttpResponse;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.entity.ContentType;
import org.apache.http.entity.mime.MultipartEntityBuilder;
import org.apache.http.entity.mime.content.FileBody;
import org.apache.http.entity.mime.content.StringBody;
import org.apache.http.impl.client.CloseableHttpClient;
import org.apache.http.impl.client.HttpClients;
import org.apache.http.util.EntityUtils;
public class ClientMultipartFormPostTest {
private static ExecutorService pool = Executors.newFixedThreadPool(300);
public static void main(String[] args) throws Exception {
final String path = args[0];//??????
final String url = args[1]; //?????URL
final int i_len = Integer.parseInt(args[2]);//???????
final int j_len = Integer.parseInt(args[3]);//????????????????????????
final AtomicInteger c = new AtomicInteger(0);
final long s = System.currentTimeMillis();
for (int i = 0; i < i_len; i++) {
new Thread(new Runnable() {
@Override
public void run() {
while (true) {
try {
upLoadLogMultiThread(url??path);
int cc = c.addAndGet(1);
if (cc % 1000 == 0) {
System.out.println(String.format("c: %d?? t: %d"?? cc?? (System.currentTimeMillis() - s)));
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}).start();
}
}
public static void upLoadLogMultiThread(String url??String path) throws IOException{
CloseableHttpClient httpclient = HttpClients.createDefault();
try {
HttpPost httppost = new HttpPost(url);
FileBody bin = new FileBody(new File(path));
StringBody comment = new StringBody("A binary file of some kind"?? ContentType.TEXT_PLAIN);
HttpEntity reqEntity = MultipartEntityBuilder.create()
.addPart("bin"?? bin)
.addPart("comment"?? comment)
.build();
httppost.setEntity(reqEntity);
CloseableHttpResponse response = httpclient.execute(httppost);
try {
HttpEntity resEntity = response.getEntity();
EntityUtils.consume(resEntity);
} finally {
response.close();
}
} finally {
httpclient.close();
}
}
}