This commit is contained in:
SearchNull
2021-12-28 13:08:25 +08:00
parent 33021efdff
commit e1e7f1e32b

View File

@@ -25,8 +25,8 @@ public class Parser {
String value;
for (String head : header) {
String[] strings = head.split(":", 2);
key = strings[0];
value = strings[1];
key = strings[0].trim();
value = strings[1].trim();
map.put(key, value);
}