Users List
Subject: RE: Escapign backslash in java.home
why don't you use forward-slashes instead backslashes?
It is the same for Java and it fits on Win & *nix systems; of course, it
won't work the same on any OS, since in Win you have this horrible
drives concept (C: D: etc)
Users List
Subject: RE: Escapign backslash in java.home
why don't you use forward-slashes instead backslashes?
It is the same for Java and it fits on Win & *nix systems; of course, it
won't work the same on any OS, since in Win you have this horrible
drives concept (C: D: etc)
What is wrong with the following?
java.home is ${java.home}
If you wanted to replace \ with \\, you could use a scriptfilter:
self.setToken(self.getToken().replace("\\", ""));
\a\b\c
Peter
Thomas Saxtoft wrote:
On a Windows XP I
why don't you use forward-slashes instead backslashes?
It is the same for Java and it fits on Win & *nix systems; of course, it
won't work the same on any OS, since in Win you have this horrible drives
concept (C: D: etc)
i.e
(for Win)
java.home=C:/j2se1.4.2/bin
(for *nix)
java.home=/usr/local