[求助]getPath和getAbsolutePath()区别!(看了API快晕了)
如题!! API上讲的太绕口了,看了几次还是有点晕!!哪位来说明下吧

一个人的快乐,不是因为他拥有的多,而是因为他计较的少.
了解了,用程序来说明问题。
import java.io.*;
public class PathExample
{
public static void main(String[] args)
{
File filePath=new File("PathExample");
System.out.println("Use getPath(): "+filePath.getPath());
System.out.println("Use getAbsolute(): "+filePath.getAbsolutePath());
}
}
程序输出:
Use getPath(): PathExample
Use getAbsolute(): e:\java\PathExample
[此贴子已经被作者于2006-8-25 9:51:31编辑过]