Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Open Source Projects
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
TDD for a Shopping Website LiveProject
this week in the
Testing
forum!
Post Reply
Bookmark Topic
Watch Topic
New Topic
programming forums
Java
Mobile
Certification
Databases
Caching
Books
Engineering
Micro Controllers
OS
Languages
Paradigms
IDEs
Build Tools
Frameworks
Application Servers
Open Source
This Site
Careers
Other
Pie Elite
all forums
this forum made possible by our volunteer staff, including ...
Marshals:
Campbell Ritchie
Paul Clapham
Ron McLeod
Jeanne Boyarsky
Tim Cooke
Sheriffs:
Liutauras Vilda
paul wheaton
Henry Wong
Saloon Keepers:
Tim Moores
Tim Holloway
Stephan van Hulst
Carey Brown
Frits Walraven
Bartenders:
Piet Souris
Himai Minh
Forum:
Other Open Source Projects
Excel Generation using POI
Ginnakunta Laxmi Narayan
Ranch Hand
Posts: 35
posted 17 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Can i generate multiple sheets in the same excel file using POI.
Please help me.
Bye
Narayan
Amber Vaidya
Ranch Hand
Posts: 42
posted 17 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
Sure you can ...
Create a workbook and then create sheets in the workbook
// create a new workbook
HSSFWorkbook wb = new HSSFWorkbook();
// create new sheets
HSSFSheet sheet1 = wb.createSheet();
HSSFSheet sheet2 = wb.createSheet();
HSSFSheet sheet3 = wb.createSheet();
Catch Ernie! Catch the egg! And catch this tiny ad too:
free, earth-friendly heat - a kickstarter for putting coin in your pocket while saving the earth
https://coderanch.com/t/751654/free-earth-friendly-heat-kickstarter
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
Export to Excel
accessing excel file from java
excel as a database
Problem in reading the excel file path from WINDOWs machine from UNIX environment
Saving data to Excel files
More...