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.
このAPIに接続しようとしています。手順の一部として、次のように参照を追加する必要があります。
System.setProperty("wordnet.database.dir", "C:\\WordNet-3.0\\dict\\");
これで問題ありませんが、パスを相対的なものにしたいと思います。以下の NetBeans で示すように、ディレクトリはプロジェクト内の「Resources」フォルダにあります。
パスはどのように変更できますか?
これを試して:
System.setProperty("wordnet.database.dir", "Resources\\WordNet\\dict\\");