ã«ã¬ã³ããã£ã¬ã¯ããªãåå¾ããã«ã¯ (pwd) Java 2015/02/01 ã·ã¹ãã ãããã㣠"user.dir" ãèªã¿åãã String pwd = System.getProperty("user.dir"); System.out.println(pwd); ã¾ã㯠java.io.File ã使ã£ã¦ç¡çããåå¾ããã import java.io.File; String pwd = new File(".").getAbsoluteFile().getParent(); System.out.println(pwd); // 以ä¸ã®ä¾ã ã¨æå¾ã« /. ãä»ãã¦ãã¾ã String pwd2 = new File(".").getAbsolutePath(); System.out.println(pwd2); Ruby 2014/12/03 Dir::pwd ã§ã«ã¬ã³ã
{{#tags}}- {{label}}
{{/tags}}