在java程序当中怎么获取一个文件的路径?
  * 当这个文件在类路径下的时候(在src/bin目录下的时候):
    String absolutePath = Thread.currentThread().getContextClassLoader().getResource("从类的根路径下作为起点的文件路径").getPath();
  * 当这个文件不在类路径下,在Context-Root下的时候:
    ServletContext application = this.getServletContext();
    String absolutePath = application.getRealPath("从项目的根路径下作为起点的文件路径");