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.
Fileオブジェクトを使用して、groovlet と同じディレクトリにあるローカル ファイルを読み取りたいと考えています。ただし、ファイルへの相対パス ("example.txt"または"./example.txt") を使用してもうまくいきません。絶対パス (例: "/example.txt") を指定すると、機能します。
File
"example.txt"
"./example.txt"
"/example.txt"
groovlet の作業ディレクトリまたはコンテキスト パスをプログラムで取得する方法はありますか?
new File("${request.getContextPath()}/example.txt")