- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下是我的用于读取Excel工作表内容的java代码。
String urlcnt="";
for (Row row : sheet) {
{
Cell firstCell = row.getCell(0);
urlcnt=firstCell.getRichStringCellValue();}
编译上述代码时出现以下错误。
ReadExcel.java:18: incompatible types
found : org.apache.poi.ss.usermodel.RichTextString required: java.lang.String
urlcnt=firstCell.getRichStringCellValue();//This line is the cause for the error
如果我只是打印单元格的值,而不是将 getRichStringCellValue() 存储在字符串中,它就可以正常工作。但我继续将其存储在字符串中以进一步处理出现的问题。
请告诉我需要做什么才能继续。
最佳答案
该错误是因为 getRichStringCellValue()
返回 HSSFRichTextString或XSSFRichTextString (取决于您的单元格是 HSSFCell 还是 XSSFCell)并且您将其分配给 String
取决于您的进一步处理 -
您想在 HSSFRichTextString 上调用 applyFont
或 clearFormatting
吗?然后将其存储在 HSSFRichTextString/XSSFRichTextString 中。
如果您实际上只需要字符串文本,请使用 getString() POI API 中的方法
根据您的评论更新
将其用作
urlcnt=firstCell.getRichStringCellValue().getString();
关于java - 使用 Apache POI 的 getRichStringCellValue() 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3677102/
我目前正在使用 Apache POI 处理 MS Excel 文件,我遇到了一些对我来说似乎很奇怪的事情。 HSSFCell 类有一个名为 getRichStringCellValue() 的方法,该
以下是我的用于读取Excel工作表内容的java代码。 String urlcnt=""; for (Row row : sheet) { { Cell firstCell = row.getCel
我正在尝试使用 Java POI 读取存储在 Excel 工作表中的数据。我对这两种方法感到困惑,因为这两种方法都返回存储在单元格中的字符串值。谁能解释一下这两种方法的区别? 最佳答案 重要的线索是看
我是一名优秀的程序员,十分优秀!