-1

我有一个问题,它让我发疯。在我的应用程序中,我需要获取本地标记的值、对服务器的请求的延迟、服务器标记和对应用程序的响应延迟。

我能得到的唯一值是本地标记、服务器标记和一个完整周期的时间(请求+响应)。那么如何获得请求延迟和响应延迟。

4

2 回答 2

0

如果您使用 php 执行请求,则可以使用以下内容:

<?php
    // start a timer
    $start_time = microtime(true);
    // do some network stuff
    // example is read google.com
    $buffer = file_get_contents('http://www.google.com');
    // echo the current time minus the start time
    echo number_format(microtime(true) - $start_time, 5) . ' seconds';
于 2013-04-09T07:00:37.640 回答
0
long sendtime,latncyTime;   
HttpPost httppost = new HttpPost("http://your-url.com");

            List<BasicNameValuePair> nameValuePairs = new ArrayList<BasicNameValuePair>(
                    2);
            nameValuePairs.add(new BasicNameValuePair("username",
                    "ARUN"));
            nameValuePairs.add(new BasicNameValuePair("password",
                    "****"));
            try {
                httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));

sendtime=System.currentTimeMillis();
                HttpResponse response = httpclient.execute(httppost);
                if (response.getStatusLine().getStatusCode() == 200) {
latncyTime=System..currentTimeMillis()-sendtime;



                }

            } catch (Exception e) {
                // TODO: handle exception
                e.printStackTrace();

            }
于 2013-04-09T07:19:41.980 回答