Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のコードの場合:
Model m2=ModelFactory.createDefaultModel(); m2.read("Untitled.xml");
エラーが発生します:Exception in thread "main" com.hp.hpl.jena.shared.JenaException: java.net.MalformedURLException: no protocol: Untitled.xml
Exception in thread "main" com.hp.hpl.jena.shared.JenaException: java.net.MalformedURLException: no protocol: Untitled.xml
誰か助けてくれませんか?
それはURLを期待します、試してみてくださいm2.read(new File("Untitled.xml").toURL().toString());
m2.read(new File("Untitled.xml").toURL().toString());