您可以使用Apache POI罐子一樣
https://poi.apache.org/download.html
代碼來設置數據如下: -
public void setXLCellValue(String sheetName,int rowNum,int cellNum, String input)
{
try{
FileInputStream fis=new FileInputStream(xlpath);
Workbook wb=WorkbookFactory.create(fis);
wb.getSheet(sheetName).getRow(rowNum).createCell(cellNum).setCellValue(input);
FileOutputStream fos=new FileOutputStream(xlpath);
wb.write(fos);
fos.close();
}
catch(Exception ex)
{
}
}
代碼來獲取數據如下: -
public String getXLcellValue(String sheetName, int rowNum, int cellNum)
{
try{
FileInputStream fis=new FileInputStream(xlpath);
Workbook wb=WorkbookFactory.create(fis);
return wb.getSheet(sheetName).getRow(rowNum).getCell(cellNum).getStringCellValue();
}
catch(Exception ex)
{
System.out.println(ex.getMessage());
}
return "";
}
希望它能幫到你:)
歡迎來到Stackoverflow。請閱讀這些鏈接以改善您的問題:[Tour](https://stackoverflow.com/tour)| [如何問](https://stackoverflow.com/help/how-to-ask)| [最小,完整和可驗證示例](https://stackoverflow.com/help/mcve) – Tom
我現在應該編輯好嗎? –
代碼不存在,我在這裏描述我的問題,這是我引發的一個新事物,因此描述了這個問題。 –