java excel替换字符串_java操作excel 替换指定字符串
时间: 2023-07-06 15:13:11 浏览: 168
可以使用Apache POI库来操作Excel文件。
以下是一个简单的Java代码示例,用于打开Excel文件、查找并替换指定字符串:
```java
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
public class ExcelReplaceString {
public static void main(String[] args) {
try {
// 打开Excel文件
FileInputStream file = new FileInputStream(new File("input.xlsx"));
Workbook workbook = new XSSFWorkbook(file);
// 获取第一个Sheet
Sheet sheet = workbook.getSheetAt(0);
// 遍历所有行和单元格,查找并替换指定字符串
for (Row row : sheet) {
for (Cell cell : row) {
if (cell.getCellType() == Cell.CELL_TYPE_STRING) {
String text = cell.getStringCellValue();
if (text.contains("要替换的字符串")) {
text = text.replace("要替换的字符串", "替换后的字符串");
cell.setCellValue(text);
}
}
}
}
// 保存Excel文件
FileOutputStream outFile =new FileOutputStream(new File("output.xlsx"));
workbook.write(outFile);
outFile.close();
System.out.println("Excel文件中的字符串已经成功替换!");
} catch (Exception e) {
e.printStackTrace();
}
}
}
```
注意:在上述代码中,需要将“要替换的字符串”和“替换后的字符串”替换为实际需要替换的字符串。
阅读全文