Replies: 2 comments
-
I found another small problem: Rio.write(model, new FileOuputStream("/path/to/file.ttls"), "", RDFFORMAT.TURTLESTAR); it should be FileOutputStream .... |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hi, thank you for reporting these issues, I'll create a ticket to fix it Best regards Bart |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
here:
https://rdf4j.org/documentation/programming/rdfstar/
this line of code:
Model model = Rio.parse(new FileInputStream("/path/to/file.ttls"), "", RDFFORMAT.TURTLESTAR);
should be
Model model = Rio.parse(new FileInputStream("/path/to/file.ttls"), "", RDFFormat.TURTLESTAR);
NOTE casing! or?
Salut
D063520
Beta Was this translation helpful? Give feedback.
All reactions