Tagged Questions
0
votes
2answers
53 views
Reading words in Ms Word and replacing it with new words (with JAVA)
I am writing a program to read some texts or textfields from microsoft office word and replace it with new words by using Jacob.
I got the help from this link ...
0
votes
5answers
65 views
Java API to update MS word headers/footers and convert to PDF
I need a API to support changing header/footer of doc, docx, xls, xlsx. I have a huge code written for libreoffice, but the problem is the final document is with broken style and that is a big issue. ...
0
votes
1answer
90 views
Open file Office doc on a url through command line (Mac)
I am trying to build a Java applet that will automatically load an Office file from a url and open it with the right desktop application on Mac Os.
For the moment, I am looking for the command line ...
1
vote
1answer
65 views
java use pdfbox from msoffice to pdf
Is it possible to convert from MS office file formats using Apache PDFBox (the documentation isn't clear about this, and the javadoc seems to indicate no such capability exists), or would I need to do ...
1
vote
0answers
141 views
Add-in Ribbon creation in MS office excel using java
I am a freelancer and very new to C#(comfortable in Java). In my new project I need to create a ribbon in excel sheet and work around that.
Can I create the ribbon in excel using Java as I am not ...
-3
votes
1answer
81 views
How to integrate the MS office to my java web based application at the server side
I want to integrate the MS office software with Java application at the server side.
So that I can access all the ms office doc using browser.
Please help me.
Thanks,
Sheetalkumar
1
vote
1answer
271 views
how to convert HTML to PPT file using api?
I have to add a capability that is export a jsp (rendered as html page) as ppt file. Previously export jsp as excel using poi and as pdf using iText has been done. I have googled a lot about html/jsp ...
-2
votes
1answer
839 views
Open a password protected Word/Excel file using Apache POI [duplicate]
Possible Duplicate:
How can I access password protected Excel workbook in Java using POI api
How to open a password protected Word/Excel-file using Apache POI in Java ?
Please, write the ...
0
votes
1answer
70 views
work with MS Office in Java/C++ [closed]
Is there a library or component that allows to open Excel, Word, PowerPoint, password-protected for Java or C ++ ?
4
votes
1answer
271 views
What is a good option for converting Office Documents to PDF or Image
Basically, what i want to know is, is there any better open-source option other than JODConverter, Apache POI, docx4j to do a conversion of Office documents - docx,doc,xls,xlsx,odt.. in to a PDF ...
1
vote
1answer
101 views
How to store delta of files across version of file?
I want to keep delta of files (MS Office/pdf/flash/images) when I upload my file to my local repo to store the files. You can imagine this in-house box.net or dropbox for my local usage.
Are there ...
0
votes
1answer
356 views
Convert MS-Office to PDF in Java
I'm using a Java library to show different types of documents. In that library, PDF files are shown more better than other type of documents, so I decided to convert other types of documents to PDF ...
0
votes
1answer
1k views
Forcing the browser to download a docx file in JAVA generates a corrupted document
Using JAVA, I'm trying to force the browser to download files.
Here is the code I currently use:
response.reset();
response.resetBuffer();
response.setContentType(mimeType);
...
2
votes
0answers
156 views
Add contacts to an MS outlook Appointment
I have created a java program to create appointment on MS Outlook.
setProperty(appointment, "Subject", "Meeting");
here the "Subject" is the tag which uses to set a subject for the appointment.
...
0
votes
3answers
264 views
How to serve MS office documents inline instead of as attachment?
I want to serve MS documents inline instead of providing it as download by an attachment. I defined application mime type according to document type but the client still tries to download it. Here is ...