我尝试编写一个服务器客户端程序。我可以发送协议文本并正确获取文本。但是当我尝试解析文本时,我遇到了 Matcher 类的问题。因为它只匹配第一行。那么我怎样才能找到正确的字符串并解析文本。我认为 Matcher 不会尝试匹配其他行。如果是错误,我该如何修复它,或者我将拆分每一行然后尝试解析。
下面是一个示例,我无法在表达式上匹配字符串。
String veri ="SIP/2.0 200 OK\r\n"
+"Via: SIP/2.0/UDP 10.10.10.34:5060;branch=z9hG4bK3834f681a;received=10.10.10.17\r\n"
+"From: <sip:4420145@10.10.10.24>;tag=as153459088\r\n"
+"To: <sip:44520145@10.10.10.24>;tag=as6163450a5a\r\n"
+"Call-ID: 1e0ssdfdb7f456e5977bc0df60645348cf1ce@[::1]\r\n"
+"CSeq: 18368 REGISTER\r\n"
+"Server: Asterisk PBX 11.3.0\r\n"
+"Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFO, PUBLISH\r\n"
+"Supported: replaces, timer\r\n"
+"Expires: 120\r\n"
+"Contact: <sip:345dgd@10.10.10.17:5060>;expires=120\r\n"
+"Date: Sat, 29 Jun 2013 14:00:50 GMT\r\n"
+"Content-Length: 0";
//veri="To: <sip:3453@10.10.10.24>;tag=34dgd\r\n";
Pattern p1 = Pattern.compile("^To\\: (.*);tag=(.*)$");
Matcher m = p1.matcher(veri);
if(m.find()){
System.out.println(m.group(1).trim());
}
谢谢你的帮助