将ssize_t转换为字符串为double

时间:2017-04-23 19:31:50

标签: c size-t

     XSSFCellStyle cellStyle = cell.getCellStyle();
     DataFormat df = workbook.createDataFormat();
     cellStyle.setDataFormat(df.getFormat("###,##0"));
     cell.setCellStyle(cellStyle);


     if (cell.getCellType() == Cell.CELL_TYPE_FORMULA) {
          evaluator.evaluateFormulaCell(cell);
      }

我尝试编写一个代码,该代码采用String line=null; while (scan.hasNextLine()) { line += scan.nextLine()+","; } System.out.println("Boolean Array Contents: "+line); int count = line.split(",").length; 变量表示文件大小(以字节为单位),并以{B,KB,MB,GB}格式返回表示此数字的字符串。我希望如果例如文件是q.abc ...例如MB,则字符串将在小数点后的第一个数字中被截断,即将是q.aMB。 这段代码不起作用有没有办法解决它?

0 个答案:

没有答案