0
votes
1answer
26 views
syntax error on createCell
i'm getting a syntax error on row.createCell line
Multiple markers at this line
- Syntax error on token "createCell", = expected after
this token
- Syntax error on t …
1
vote
3answers
81 views
Java: How to paste (append) an image on clipboard to a word document.
Hi,
Is there a way in Java, to copy the contents of the clipboard (an image in my case) to the end of a word document?
I want to have a program that will -
* Take a filename (wo …
0
votes
3answers
58 views
connect Ms Access to java
I extracted data from excel using poi api. Now I want to store the data in access please clarify
1
vote
3answers
281 views
How do I get the (Java Apache POI HSSF) Background Color for a given cell?
Hello,
I have an existing excel spreadsheet, which I am accesssing and reading values from, I am using Apache POI HSSF.
It is initialised like this:
HSSFSheet sheet;
FileInputSt …
0
votes
1answer
626 views
Java: parsing ms-word document using POI/HWPF
I have a ms-word document (MS-Office 2003; non-xml). Within this
document there is a string associated with a bookmark. Furthermore,
the word document contains word-macros. My goal …
0
votes
5answers
722 views
Open Microsoft Word in Java
Hi there I'm facing a problem, anyone can help me??
The Problem is : I'm trying to open MS Word 2003 document in java, search for a specified String and replace it with a new Stri …
0
votes
0answers
76 views
How to insert header for every page in a document using apache poi?
I need to read a document and write its content to another file. For this i am using apache poi (getText)which prints the header once at the starting page only. i need to read all …
2
votes
5answers
435 views
How to Cache InputStream for Multiple Use
I have an InputStream of a file and i use apache poi components to read from it like this:
POIFSFileSystem fileSystem = new POIFSFileSystem(inputStream);
The problem is that i n …
0
votes
3answers
277 views
how to create .doc file using java?
Can anyone tell me how to create doc files using java?
I know, there's a POI library, but it seems like it can save only simple documents. You can read anything you wish, but you c …
1
vote
3answers
332 views
Problem with Numeric/String using Apache POI…
Hi!
I have excel file with such contents:
A1: SomeString
A2: 2
All fields are set to String format.
When I read file in java using poi it tells that B1 is numeric cell for …
1
vote
8answers
553 views
What are the (gotchas and) limitations when using POI to create Excel workbooks?
Just saw a crash as we exceeded 255 columns. Maybe this question should go directly to POI, but lets say I do not want to disturb them in their effort to further develop the increa …
0
votes
1answer
156 views
Apache POI xls column Remove
I dont find how to remove a column with the Apache POI API.
I would appreciate a sample code or help on this point.
Thank you
0
votes
3answers
907 views
Java POI - anyone been able to extract numbers from formula cells?
I've been using Java POI for some time now, but have encountered a new problem, and I'm wondering if anyone has found a solution.
When you read a spreadsheet, you need to know the …
0
votes
1answer
669 views
How to use Apache HWPF to extract text and images out of a DOC file
Hi...!
I downloaded the Apache HWPF. I want to use it to read a doc file and write its text into a plain text file. I don't know the HWPF so well.
My very simple program is here: …
0
votes
1answer
225 views
POI 3.2 Image Height/Width controlling
Using POI version 3.2
Issue: Not able to resize an image to its original height and width.
I am able to add an image to the excel file.
After adding image I call picture.resize() …
