File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
datavec-examples/src/main/java/org/datavec/transform/basic Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ public class BasicDataVecExampleLocal {
62
62
public static String dataLocalPath ;
63
63
64
64
65
- public static void main (String [] args ) throws Exception {
65
+ public static void main (String [] args ) throws Exception {
66
66
dataLocalPath = DownloaderUtility .BASICDATAVECEXAMPLE .Download ();
67
67
//=====================================================================
68
68
// Step 1: Define the input data schema
@@ -180,11 +180,11 @@ public static void main(String[] args) throws Exception {
180
180
181
181
//Print before + after:
182
182
System .out .println ("\n \n ---- Original Data File ----" );
183
- String originalFileContents = FileUtils .readFileToString (inputFile );
183
+ String originalFileContents = FileUtils .readFileToString (inputFile , ( String ) null );
184
184
System .out .println (originalFileContents );
185
185
186
186
System .out .println ("\n \n ---- Processed Data File ----" );
187
- String fileContents = FileUtils .readFileToString (outputFile );
187
+ String fileContents = FileUtils .readFileToString (outputFile , ( String ) null );
188
188
System .out .println (fileContents );
189
189
190
190
System .out .println ("\n \n DONE" );
You can’t perform that action at this time.
0 commit comments