给出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
行?我尝试过使用正则表达式(使用this作为指导)并且无法找出正确的模式。
这是我现在使用的模式:
".*?Host:.*?:" + <dynamic port number goes here>+ ".*?"
编译模式时,我使用链接问题中建议的Pattern.DOTALL
标记。
UPDATE:我直接从浏览器获取请求字符串,这就是我现在正在使用的内容:
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);
//...
}
然而它仍然无效。
答案 0 :(得分: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"));
输出:
Accept-Encoding:gzip,deflate
主持人:NEW_HOST:8080
连接:Keep-Alive
答案 1 :(得分:0)
替换:/static/cache/gettheme_whiteboard_
用:/static/cache/gettheme_cust