2024-04-20 18:43:55 +02:00
|
|
|
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) {
|
2024-04-20 18:44:55 +02:00
|
|
|
System.err.println(e);
|
2024-04-20 18:43:55 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|