2
2
3
3
import java .io .File ;
4
4
import java .io .IOException ;
5
+ import java .net .URI ;
6
+ import java .net .URL ;
5
7
import java .nio .file .Files ;
6
8
import java .nio .file .Paths ;
7
9
import java .util .List ;
@@ -30,6 +32,7 @@ private FLUFiles() {} // hide constructor
30
32
31
33
public static String readFile (String path ) { return internal .readFile (path ); }
32
34
public static List <String > readFileAsList (String path ) { return internal .readFileAsList (path ); }
35
+ public static String readFileFromWeb (String url ) { return internal .readFileFromWeb (url ); }
33
36
public static boolean writeFile (String path , String content ) { return false ; }
34
37
public static boolean appendToFile (String path , String content ) { return false ; }
35
38
@@ -133,7 +136,7 @@ private boolean move(String source, String destination) {
133
136
return false ;
134
137
}
135
138
}
136
- private static String readFile (String path ) {
139
+ private String readFile (String path ) {
137
140
if (isAValidePath (path )) {
138
141
try {
139
142
// return Files.readAllLines(Paths.get(path));
@@ -145,7 +148,7 @@ private static String readFile(String path) {
145
148
return null ;
146
149
}
147
150
}
148
- private static List <String > readFileAsList (String path ) {
151
+ private List <String > readFileAsList (String path ) {
149
152
if (isAValidePath (path )) {
150
153
try {
151
154
return Files .readAllLines (Paths .get (path ));
@@ -156,5 +159,17 @@ private static List<String> readFileAsList(String path) {
156
159
return null ;
157
160
}
158
161
}
162
+
163
+ private String readFileFromWeb (String urlString ) {
164
+ if (urlString == null ) {
165
+ return null ;
166
+ }
167
+ try {
168
+ URL url = URI .create (urlString ).toURL ();
169
+ return new String (url .openStream ().readAllBytes ());
170
+ } catch (IOException e ) {
171
+ return null ;
172
+ }
173
+ }
159
174
}
160
175
}
0 commit comments