1

给定一个 HTTP 请求:

Client: GET /Default.aspx HTTP/1.1
Accept: image/gif, image/jpeg, image/pjpeg, image/pjpeg, application/x-shockwave
-flash, application/x-ms-application, application/x-ms-xbap, application/vnd.ms-
xpsdocument, application/xaml+xml, */*
Accept-Language: en-us
User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; Trident/4.0; .NET
 CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022)
Accept-Encoding: gzip, deflate
Host: logan-pc:8080
Connection: Keep-Alive

如何以Host编程方式更改线路?我尝试过使用正则表达式(以此为指导)并且无法找出正确的模式。

这是我现在使用的模式:

".*?Host:.*?:" + <dynamic port number goes here>+ ".*?"

编译模式时,我使用Pattern.DOTALL链接问题中建议的标志。

更新:我直接从浏览器获取请求字符串,这就是我现在使用的:

int len = 0;
while((len = ConnHandler.this.clientIn.read(buf)) > 0)
{
    System.out.println(".*?Host:.*?:" + ConnHandler.this.serverport+".*?");
    String in = new String(buf, 0, len);
    in.replaceAll(".*?Host:.*?:" + ConnHandler.this.serverport+".*?", "localhost:" + ConnHandler.this.serverport);
    //...
}

但它仍然无法正常工作。

4

2 回答 2

0

你的模式是正确的。这段代码对我有用:

String string = "Accept-Encoding: gzip, deflate\nHost: logan-pc:8080\nConnection: Keep-Alive";
System.out.println(string.replaceAll(".*?Host:.*?:8080.*?", "Host: NEW_HOST:8080"));

输出:

接受编码:gzip,放气

主机:NEW_HOST:8080

连接:保持活动

于 2013-01-18T13:25:49.783 回答
0

将:替换/static/cache/gettheme_whiteboard_ 为:/static/cache/gettheme_cust

于 2017-07-20T22:19:15.980 回答