|
3#
楼主 |
发表于 2015-1-12 18:15:39
|
只看该作者
Response headers:
HTTP/1.1 200 OK
Server: Apache-Coyote/1.1
Set-Cookie: SESSIONID=925F1BFC37400E15BF99BCE51A09FB50; Path=/
Content-Type: text/xml;charset=UTF-8
Content-Length: 357
Date: Mon, 12 Jan 2015 10:18:39 GMT
Connection: close
========================
String json = prev.getResponseHeaders();
//System.out.println(json);
int index;
String temp;
indxe = json.indexOf("=");
//System.out.println(index);
temp =json.subString(index,index+11);
System.out.println(temp);
我这样写的脚本,但是没有输出结果,请问有什么问题吗,
Set-Cookie: SESSIONID=(.+?); Path=/
另外,试了断言截取了session,但是怎么保存呢??
试了正则表达式提取器,但是提取不到session, |
|