0
votes
1answer
37 views

How to add hyperlink to Excel simple shape using apache poi?

I use Microsoft Excel 2007. I have a simple shape on the first excel sheet. I would like to add a hyperlink on this simple shape which refer to another sheet on the specific row and column. I make a ...
0
votes
1answer
14 views

Does Apache POI support the “strict” variant of ISO/IEC 29500?

With M$ Excel 2013 there are 2 variants of XLSX, the "Transitional" which M$ supported with XLSX in Excel 2010, and "Strict" = OOXML. Is POI able to read and write the latter? If so, from which ...
0
votes
1answer
44 views

How to set blank space after a table in a docx document (working with apache poi)

I've been trying to create tables and make them to leave some space between its bottom border and whatever comes after the table (usually text). As far as I have crawl through ooxml specification I ...
0
votes
0answers
32 views

Word docx file parsing: Cutom Styles

I am working on a word document parser, and I have some problem understanding how to extract custom styles for paragraph. I am using Apache POI, I get style Id by using: ...
0
votes
0answers
91 views

How to set table to 100% with Apache POI OOXML?

I have been trying and being unsuccessful with setting table width to 100% in Apache POI OOXML. I have read the document but couldn't find proper way to do so. Is Apache POI missing this ...
0
votes
1answer
204 views

Apache poi failed to open word document : NoSuchMethodError using ooxml-shemas-1.0.jar but not with poi-ooxmlshemas-3.8.jar

I'm using Apache poi to manipulate word 2007 documents. I'm using ooxml-shemas-1.0 but have The following message : Caused by: java.lang.NoSuchMethodError: ...
2
votes
1answer
398 views

How to iterate line by line through a .docx file using apache POI [closed]

My object is to read a .docx file and to display the text of that on the view(Webpage). I am using apache POI to read a .docx file in Grails Application Please suggest me a way to display the output ...
1
vote
0answers
512 views

Is there any way to get the position of image w.r.t. text in .docx with text wrapping other than inline in ooxml?

When an image is placed in a word 2007 document with text wrapping other than 'inline', the position of the image with respect to text is not reflected in the document.xml. Only I am able to get the ...
0
votes
0answers
371 views

Changing cell format with Apache POI causes loss of data and unexpected behavior.

I am using Apache POI to create, access and modify *.xlsx and *.xls files. I got stuck on changing cell formats(don't confuse with styles). Workbook wb = new XSSFWorkbook(); Sheet sheet = ...
0
votes
1answer
1k views

How to dynamically generate multiple worksheets in apache poi

I would like to dynamically generate multiple worksheets for a workbook/excel in Apache poi. I want to know how can I do it an efficient and thread safe/concurrent way. So multiple worksheet ...
0
votes
1answer
696 views

Any Java api similar to open xml sdk 2.0?

Is there any java api which is similar to open xml sdk 2.0. Just I need to convert open office xml excel file to .xlsx file. office xml excel file I'm creating by using xml and xslt. I tried apache ...
0
votes
0answers
173 views

OpenXML AutoFill (like the Excel Event)

I need the following spreadsheet editing capabilities in order of importance: Autofill user defined formulas client-side doesn't install anything (such as win32com, python interpreter..) basic read ...
3
votes
4answers
6k views

Apache POI: How to convert HSSFWorkbook to XSSFWorkbook

How to convert org.apache.poi.hssf.usermodel.HSSFWorkbook to org.apache.poi.xssf.usermodel.XSSFWorkbook in Apache POI? Environment: JSE1.6, JBossAS 4.3.2, POI 3.7
0
votes
1answer
3k views

How to add Cell Comments to Excel sheet using POI?

I am using the following code to generate excel. http://www.docjar.com/html/api/org/apache/poi/xssf/usermodel/examples/BigGridDemo.java.html import java.io.*; import java.util.*; import ...
3
votes
3answers
2k views

How to get chart info from an Excel spreadsheet using Apache POI?

Is it possible to extract chart information from an Office 2007 (xlsx / OpenXML) spreadsheet using Apache POI? I've managed to read in the spreadsheet and even get the part that refers to the chart ...
0
votes
1answer
905 views

How to create Hypelink into Excel using openxml in Java

I am trying to add hyperlink to excel file from OpenXML, which I am not able to. Have read somewhere that need to add relationships tag for hyperlink and then refer that id with hyperlink tag, but how ...
0
votes
1answer
823 views

DOCX generation: POI OOXML trims spaces from string

I'm trying to generate a docx-document using poi-ooxml. The following code produces almost the document I want, but for some reason it removes end and start spaces from the text. XWPFDocument ...
7
votes
2answers
7k views

How to extract plain text from a DOCX file using the new OOXML support in Apache POI 3.5?

On September 28, 2009 the Apache POI project released version 3.5 which officially supports the OOXML formats introduced in Office 2007, like DOCX and XLSX. Please provide a code sample for ...