從控制檯的Excel表格中使用poi(2.5)打印一個大於7位的數字,同時檢索它以大數字的指數格式給出的值。如何使用java
while (cells.hasNext())
{
HSSFCell cell = cells.next();
System.out.println ("Cell No.: " + cell.getCellNum());
/*
* Now we will get the cell type and display the values
* accordingly.
*/
switch (cell.getCellType())
{
case HSSFCell.CELL_TYPE_NUMERIC :
{
// cell type numeric.
System.out.println ("Numeric value: " + cell.getNumericCellValue());
break;
}
它是爲它的數字比7eg更大的數字給出的值。(12345678)在exponential.Canü幫助我獲得相同的格式值。