I am trying to use the code shown in the following example:
java.lang.NullPointerException while creating DiskFileItem
My Test method contains the following code:
final File TEST_FILE = new File("C:/my_text.txt");
final DiskFileItem diskFileItem = new DiskFileItem("fileData", "text/plain", true, TEST_FILE.getName(), 100000000, TEST_FILE.getParentFile());
diskFileItem.getOutputStream();
System.out.println("diskFileItem.getString() = " + diskFileItem.getString());
The text file exists in this location but the last line in the above code does not output the file content.
Any idea why?
N.B.
The following does print the file content:
BufferedReader input = new BufferedReader(new FileReader(TEST_FILE));
String line = null;
while (( line = input.readLine()) != null){
System.out.println(line);
}