blob: 2e4a6502e2e80bd58a780e87dbd550a7ee71929e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
import java.io.*;
public class IsAbsoluteTest {
public static void main (String args[]) {
try {
File f1 = new File("/etc/passwd");
File f2 = new File("\\autoexec.bat");
File f3 = new File("c:\\autoexec.bat");
File u1 = new File("tmp/somefile");
if ( u1.isAbsolute() )
throw new Exception("Claims "+u1+" is absolute!");
if ( ! f1.isAbsolute() )
{ /* Hm, might be on MSDOS platform, test those cases */
if ( ! f2.isAbsolute() || ! f3.isAbsolute() )
throw new Exception("Claims file isn't absolute!");
}
System.out.println("PASSED: All ok");
} catch (Exception e) {
System.out.println("FAILED: "+e);
}
}
}
|