近期笔者项目需求java模拟http请求,获取dns解析 tcp连接等详细耗时信息。
java api中提供的urlConnection 及apache提供的httpClient都不能胜任该需求,二次开发太费时间。于是google之。
最后 得出两种解决办法:
一是使用HTTP4J。
该开源项目使用socket方式,模拟请求,记录时间戳,基本满足需求。对于header自定义等细节,可在此基础上比较方便的二次开发。只是,其中有一些bug需要修复,
如https链接时获取不到ssl时间等。使用该项目的风险在于不稳定和不可控性。
稍作改动后的http4j代码。
http://download.csdn.net/detail/zhongyuan_1990/8837281
二是使用curl。
google之,curl本身没有对java的支持,由第三份提供了binding用来使用curl。可能是笔者能力有限,未能成功在windows编译它。google也没有找到相关javacurl.dll的资源下
载。最后不得不放弃。选择使用命令行的模式操作curl。
java 使用curl命令 demo
package com.netbirdtech.libcurl.test; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class test { public static void main(String[] args) { String []cmds = {"curl", "-i", "-w", "状态%{http_code};DNS时间%{time_namelookup};" + "等待时间%{time_pretransfer}TCP 连接%{time_connect};发出请求%{time_starttransfer};" + "总时间%{time_total}","http://www.baidu.com"}; ProcessBuilder pb=new ProcessBuilder(cmds); pb.redirectErrorStream(true); Process p; try { p = pb.start(); BufferedReader br=null; String line=null; br=new BufferedReader(new InputStreamReader(p.getInputStream())); while((line=br.readLine())!=null){ System.out.println("\t"+line); } br.close(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }
时间: 2024-11-10 01:29:18