Posted 4 April 2020, 10:34 am EST
I found a readme.txt file saying:
1.To build gcexcel.jar
Ensure JAVA_HOME is set in your system
Switch to Source\SpreadServices4J folder
Execute 'ant build' command, and gcexcel.jar will be output to Source\SpreadServices4J\build folder
This is my environment configuration:
java version "1.6.0_65"
Java(TM) SE Runtime Environment (build 1.6.0_65-b14-468)
Java HotSpot(TM) 64-Bit Server VM (build 20.65-b04-468, mixed mode)
Apache Ant(TM) version 1.9.14 compiled on March 12 2019
Ant opts: -Xmx4096m -XX:MaxPermSize=2048m
When I run the build command ```
ant build
Here are some of them:
[javac] /Users/softpro/devel/workspaces/gcexcel-3.1.0-source-java/Model.Style/src/com/grapecity/documents/excel/style/NumberFormatData.java:31: cannot find symbol
[javac] symbol : class INumberFormatManager
[javac] location: class com.grapecity.documents.excel.style.NumberFormatData
[javac] public DoubleTypeCode GetDoubleTypeCode(INumberFormatManager numberFormatManager,
[javac] ^
[javac] /Users/softpro/devel/workspaces/gcexcel-3.1.0-source-java/Model.Style/src/com/grapecity/documents/excel/style/NumberFormatData.java:31: cannot find symbol
[javac] symbol : class DoubleTypeCode
[javac] location: class com.grapecity.documents.excel.style.NumberFormatData
[javac] public DoubleTypeCode GetDoubleTypeCode(INumberFormatManager numberFormatManager,
[javac] ^
[javac] /Users/softpro/devel/workspaces/gcexcel-3.1.0-source-java/Model.Style/src/com/grapecity/documents/excel/style/StyleStorage.java:31: cannot find symbol
[javac] symbol : class IFormatter
[javac] location: package com.grapecity.documents.excel.style.format
[javac] import com.grapecity.documents.excel.style.format.IFormatter;
[javac] ^
[javac] /Users/softpro/devel/workspaces/gcexcel-3.1.0-source-java/Model.Style/src/com/grapecity/documents/excel/style/StyleStorage.java:32: cannot find symbol
[javac] symbol : class INumberFormatManager
[javac] location: package com.grapecity.documents.excel.style.format
[javac] import com.grapecity.documents.excel.style.format.INumberFormatManager;
[javac] ^
[javac] /Users/softpro/devel/workspaces/gcexcel-3.1.0-source-java/Model.Style/src/com/grapecity/documents/excel/style/StyleStorage.java:33: cannot find symbol
[javac] symbol : class NumberFormatManager
[javac] location: package com.grapecity.documents.excel.style.format
[javac] import com.grapecity.documents.excel.style.format.NumberFormatManager;
[javac] ^
[javac] /Users/softpro/devel/workspaces/gcexcel-3.1.0-source-java/Model.Style/src/com/grapecity/documents/excel/style/StyleManagerForWorkbook.java:22: cannot find symbol
[javac] symbol : class NumberFormatManager
[javac] location: package com.grapecity.documents.excel.style.format
[javac] import com.grapecity.documents.excel.style.format.NumberFormatManager;
[javac] ^
[javac] /Users/softpro/devel/workspaces/gcexcel-3.1.0-source-java/Model.Style/src/com/grapecity/documents/excel/style/StyleManagerForWorksheet.java:70: cannot find symbol
[javac] symbol : class NumberFormatManager
[javac] location: class com.grapecity.documents.excel.style.StyleManagerForWorksheet
[javac] public NumberFormatManager getNumberFormatManager() {
[javac] ^
[javac] /Users/softpro/devel/workspaces/gcexcel-3.1.0-source-java/Model.Style/src/com/grapecity/documents/excel/style/StyleStorage.java:252: cannot find symbol
[javac] symbol : class INumberFormatManager
[javac] location: class com.grapecity.documents.excel.style.StyleStorage
[javac] private INumberFormatManager _numberFormatManager = new NumberFormatManager();
Please help to resolve this issue.