728x90 반응형 SMALL #엑셀파일1 JAVA 엑셀 파일 읽기 & 쓰기 엑셀 파일 읽어서 쓰기 void WriteExcel() { String path = excel_save_path; // 읽을 파일 경로 try {File file = new File(path);FileInputStream inputStream = new FileInputStream(file);XSSFWorkbook xworkbook = new XSSFWorkbook(inputStream); // 2007 이후 버전(xlsx파일) XSSFSheet curSheet; // 현재 sheetHSSFCell curCell; // 현재 cellXSSFRow curRow; // 현재 row CellStyle cellStyle = xworkbook.createCellStyle();cellStyle.setAlignmen.. 2019. 1. 9. 이전 1 다음 728x90 반응형 LIST