0

嗨,我有一个简单的 restlet get 方法,它返回一个静态字符串。它如下所示:

@Get
    public String represent() {
        return "mystring\r\n";
    }

低级 c 应用程序通过进入读取循环来调用此 get。它永远不会收到完成确认信号,表明没有更多数据可供读取,并在 20 秒后超时。我需要发送代码来提醒客户端应用程序没有更多数据吗?还是说get完成了?

4

1 回答 1

1

[注意:下面编写的代码部分基于http://www.restlet.org上提供的示例]

HTTP 1.0 和 1.1 有一个名为Content-Length. 无论该标头的数值是什么,都是 HTTP 响应正文的长度。在 HTTP 1.1 中更进一步,还有另一个标头名称-值,Tranfer-Encoding: chunked它表示响应主体被分成多个部分(块),并且每个部分的长度在该部分交付之前在一行中提到。(我不是包括其他值Transfer-Encoding以保持此答案简洁。)

如果这是我的 restlet 服务器:

package restletapp;

import org.restlet.Component;
import org.restlet.data.Protocol;
import org.restlet.resource.Get;
import org.restlet.resource.ServerResource;

public class RestletApp extends ServerResource {

    public static void main(String[] args) throws Exception {
        Component component = new Component();
        component.getServers().add(Protocol.HTTP, 8182);
        component.getDefaultHost().attach("/trace", RestletApp.class);
        component.start();
    }

    @Get
    public String toAtGet() {
        return  "Resource URI  : " + getReference() + '\n'
              + "Root URI      : " + getRootRef() + '\n'
              + "Routed part   : " + getReference().getBaseRef() + '\n'
              + "Remaining part: " + getReference().getRemainingPart()
                ;
    }

}

这是我的客户端(使用 Java 中的套接字编写。只需发送一个最小的 HTTP 请求,并在控制台上打印响应的每个字符。)

package restletapp;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.Socket;
import java.net.UnknownHostException;

public class Requester {
    public static void main(String[] args) throws UnknownHostException, IOException {
        Socket s=new Socket("localhost", 8182);
        OutputStream os = s.getOutputStream();
        os.write((
                  "GET /trace HTTP/1.1\r\n" //request
                + "host: localhost:8182\r\n" //request
                + "Connection-type: close\r\n\r\n" //request
                ).getBytes());
        InputStream is = s.getInputStream();
        for(int ch;(ch=is.read())!=-1;System.out.flush())
            System.out.write(ch); //response, one char at a time.
        is.close();
        os.close();
        s.close();
    }
}

客户端进程永远不会结束。但是,如果我将我的客户端程序更改为:

package restletapp;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.net.Socket;
import java.net.UnknownHostException;

public class Requester {
    public static void main(String[] args) throws UnknownHostException, IOException {
        Socket s=new Socket("localhost", 8182);
        OutputStream os = s.getOutputStream();
        os.write((
                  "GET /trace HTTP/1.1\r\n"
                + "host: localhost:8182\r\n"
                + "Connection-type: close\r\n\r\n"
                ).getBytes());
        InputStream is = s.getInputStream();
        BufferedReader br = new BufferedReader(new InputStreamReader(is));
        int bytesRead=0;
        int contentLength=0;
        //response headers.
        for(String line;!(line=br.readLine()).isEmpty();System.out.flush()){
            System.out.println(line);
            String[] tokens = line.split(":| ");
            if(tokens[0].equalsIgnoreCase("content-length")){
                contentLength=Integer.parseInt(tokens[2]);
            }
        }
        //response separator, between headers and body.
        System.out.println();
        //response body.
        while(bytesRead<contentLength){
            System.out.write(br.read());
            System.out.flush();
            bytesRead++;
        }
        is.close();
        os.close();
        s.close();
    }
}

在第二个版本中Requester,您可以看到客户端在content-length读取响应正文的 -number 个字符时关闭了连接。

这是我使用curl得到的:

command line $ curl -i "http://localhost:8182/trace"
HTTP/1.1 200 OK
Date: Fri, 14 Jun 2013 11:54:32 GMT
Server: Restlet-Framework/2.0.15
Vary: Accept-Charset, Accept-Encoding, Accept-Language, Accept
Content-Length: 148
Content-Type: text/plain; charset=UTF-8

Resource URI  : http://localhost:8182/trace
Root URI      : http://localhost:8182/trace
Routed part   : http://localhost:8182/trace
Remaining part:
command line $ 

您可以看到,curl在阅读完内容后退出。

于 2013-06-14T12:42:37.000 回答