Warning:  Default format has been initialized
是不是重复设置某个单元格的属性。

解决方案 »

  1.   

    这个警告信息我看了源码了,是重置默认格式的初始化标记时记录的,应该没什么影响.
      /**
       * Resets the initialize flag.  This is called by the constructor of
       * WritableWorkbookImpl to reset the statically declared fonts
       */
      public final void uninitialize()
      {
        // As the default formats are cloned internally, the initialized
        // flag should never be anything other than false
        if (initialized == true)
        {
          logger.warn("Default format has been initialized");
        }
        initialized = false;
      }