Some more progress in multipart

This commit is contained in:
Ziver Koc 2016-07-11 18:05:21 +02:00
parent a700cf2863
commit e4a5af69db
5 changed files with 153 additions and 69 deletions

View file

@ -17,7 +17,7 @@ public class MultipartStringField implements MultipartField {
protected MultipartStringField(Map<String,String> header, BufferedReader in) throws IOException {
this.name = header.get("name");
value = IOUtil.getContentAsString(in);
value = in.readLine();
}
@Override