当前位置: 代码迷 >> J2SE >> 新手发现java7 API的一个bug?解决办法
  详细解决方案

新手发现java7 API的一个bug?解决办法

热度:4916   发布时间:2013-02-25 21:54:16.0
新手发现java7 API的一个bug??

import java.nio.file.*;

class Test
{
          public static void main(String[] args) 
          {
              Path p=Paths.get(".");
              System.out.println(p.getNameCount());          
         
          }
}


如果你把“.”换成当前路径,再运行一遍发现结果不一致。
应该不是bug,但JAVA究竟是如何处理和看待这个“.”东东的??

API Specifications follow below:

int getNameCount()

Returns the number of name elements in the path.

Returns:
    the number of elements in the path, or 0 if this path only represents a root component
本来就是这么设计的吧……
要翻译成绝对路径,请调用toAbsolutePath这个方法这尼玛真是个bug.....
"."在path类型中没翻译成本地绝对路径, 导致count=1

plus: getNameCount()这个函数不好, "C:\\a\\"是1, "C:\\a\\."是2, 在C:\\a\\目录下, "."是1
  相关解决方案