Changing the current working directory in Java?

前端 未结 14 1508
太阳男子
太阳男子 2020-11-22 05:32

How can I change the current working directory from within a Java program? Everything I\'ve been able to find about the issue claims that you simply can\'t do it, but I can\

14条回答
  •  再見小時候
    2020-11-22 05:40

    The working directory is a operating system feature (set when the process starts). Why don't you just pass your own System property (-Dsomeprop=/my/path) and use that in your code as the parent of your File:

    File f = new File ( System.getProperty("someprop"), myFilename)
    

提交回复
热议问题