I am looking for a way to read xlsx file using java 1.4, since my system java jdk can't be upgraded. I have tried several alternatives, but the libraries that I have found only support xls. Is there a library that works with jdk 1.4 and reads xlsx files with high performance?
How to read xlsx files in Java 1.4?
804 Views Asked by AhMaD AbUIeSa At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in EXCEL
- Concatenate excel cell string within cell reference string
- Use hidden information for filtering data
- Using Vlookup in Excel sheet to match substring
- Import from api into multiple excel cells
- Loop through list of files and open them
- Pull and push data from and into sql databases using Excel VBA without pasting the data in Excel sheets
- Loop with equation for upper limit
- excel vba null value in array
- Why is my xml file having these after convert from excel?
- TextToColumns function uses wrong delimiter
- Difference between two dates in excel 2013
- Concatenate string and number as number
- Why in a pivot the "include new items in manual filter" option is grey out when source is a powerpivot?
- Count Unique Values Repeated Dates
- How do I extract info from crunchbase
Related Questions in XLSX
- how to use xlsx library to parse excel files within the browser
- How to get header and data from Models in Python?
- How to avoid out of memory exception in case of reading large .xlsx file in java using apache poi library class XSSFWorkbook
- AngularJS ui-grid import XLSX data best approach
- How to read data one by one from excel sheet in node.js
- How to set custom header names with ALASQL and XLSX
- How to get around Run-time Error 1004
- Dynamically converting a list of Excel files to csv files in R
- Print/save Excel (.xlsx) sheet to PDF using R
- XLS file created using XML format shown XML data in OpenOffice.org Calc and share on Google Drive
- Parse XLSX with Node and create json
- SaveAs function when saving to excel from Python
- How do I include empty columns when reading an xlsx spreadsheet into R?
- Open shift strange NPM issue - Module not found though installed
- phpexcel not reading sheet correctly
Related Questions in JDK1.4
- Java ME: transform basic JDK 1.5 "enum" object into Java ME CLDC-1.1/IMP-NG (JDK 1.4)
- How do I specify an old JDK compliance in an Eclipse project?
- What is the difference between a = a.trim() and a.trim()?
- Accessing Linux Environment Variable from Java Program
- Heap Dump On Java 1.4.1
- Controling the Volume of an Audio Clip in Java 1.4
- data type to represent a big decimal in java
- Is it possible to use apple push notification service using jdk 1.4
- Can OS authentication be done for connecting to Oracle database from a java application built on JDK 1.4?
- Why Channel interface redefine close() method?
- How to read xlsx files in Java 1.4?
- Tomcat 5.5 Monitoring with JDK 1.4 on Windows
- Send an upload in chunks to avoid OutOfMemoryError with httpclient 3.1 and URLConnection
- Why the output is different between JDK 1.4 and 1.5?
- How to mock construction of new objects under JDK 1.4?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Your best shot would be https://en.osdn.jp/projects/poi-jdk14/releases/ (from Workarounds for using apache poi 3.9 with JDK 4) but I make no guarantees as to how well the port went, what bugs it introduced (and it will have introduced some!), and how well it performs, or even if it's actually what it says it is.
Given that Java 5 was released in 2004, Java 6 in 2006, and Java 1.4 was officially EOL'd in 2008, I think you're out of luck. You'd have to back-port Apache POI to 1.4 (which is what you'll find at the above link), or write the code yourself, neither of which is likely to be a lot of fun.