incomplete final line found by...
The message indicates that the last line of the file doesn‘t end with an End Of Line (EOL) character (linefeed (\n
) or carriage return+linefeed (\r\n
)). The original intention of this message was to warn you that the file may be incomplete; most datafiles have an EOL character as the very last character in the file.
The remedy is simple:
原文:http://www.cnblogs.com/wintor12/p/3924277.html