Giriş
Şu satırı dahil ederiz.
create metodu
Örnek - File
Şöyle yaparız.
Örnek
Şöyle yaparız
Şöyle yaparız.
Şöyle yaparız
Şu satırı dahil ederiz.
import org.apache.poi.hssf.usermodel.WorkBookFactory;
HSSFWorkbook veya XSSFWorkbook nesnesini yaratır. Her iki nesne de Workbook arayüzünden kalıtır.create metodu
Örnek - File
Şöyle yaparız.
Workbook workbook = WorkbookFactory.create(new File(fileName));
create metodu - InputStreamÖrnek
Şöyle yaparız
WorkbookFactory.create(new ByteArrayInputStream(...));
Örnek - FileInputStreamŞöyle yaparız.
InputStream inputStream = new FileInputStream(path);
Workbook workbook = WorkbookFactory.create(inputStream);
Örnek - FileInputStreamŞöyle yaparız
File file = ...
Workbook workbook = new XSSFWorkbook(new FileInputStream(file));
Hiç yorum yok:
Yorum Gönder