18 lines
429 B
Java
18 lines
429 B
Java
package java_src;
|
|
|
|
import java.io.IOException;
|
|
import java.nio.file.Path;
|
|
import java.nio.file.Paths;
|
|
|
|
public class TryOut {
|
|
|
|
public static void main(String[] args) {
|
|
try {
|
|
Path path = Paths.get("/home/jan/git-projekte/howtodata/JSON/alice.json");
|
|
System.out.println(FileHelper.readJson(path));
|
|
} catch (IOException e) {
|
|
System.err.println(e.toString());
|
|
}
|
|
}
|
|
}
|