If you want to load the content of a Multipart file into a String, the easiest solution is:
String content = new String(file.getBytes());
Or, if you want to specify the charset:
String content = new String(file.getBytes(), StandardCharsets.UTF_8);
However, if your file is huge, this solution is maybe not the best.