Question : How do you handle nulls in CFScript

I simply want to handle the case where this thing reaches the end of the file. what is the true condition that must be out in the while loop because the following have not worked:
1) isDefined(inputLine)
2) inputLine neq ""
3) not isNull(inputLine)

so please help me with whatever information you can.

Code Snippet:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
f = createObject('java','java.io.File').init(arguments.currentFilePath);
				fr = createObject('java','java.io.FileReader').init(f);
				br = createObject('java','java.io.BufferedReader').init(fr);
   				inputLine = br.readLine();
   				lineCount = 0;
   				while ( isDefined(inputLine) ) {
     					processLine(inputLine, getFileID());
     					lineCount = lineCount + 1;
     					inputLine = br.readLine();
   				}
				br.close();
				fr.close();
Open in New Window Select All

Answer : How do you handle nulls in CFScript

Random Solutions  
 
programming4us programming4us