for (int i = 0; i < strs.Length; i++) //遍历新的字符串数组
{
if (strs[i].Contains("port")) //如果元素里面包含"port"字符串,就提取出里面的端口值
{
port = strs[i].Substring(5);
}
if (strs[i].Contains("type")) //如果元素里面包含"type"字符串,就提取出里面的服务类型值,否则服务类型就为默认值
{
type = strs[i].Substring(5);
}