IO package: Difference between revisions
Jump to navigation
Jump to search
→Java example
(show TOC properly) |
|||
Line 165: | Line 165: | ||
And reading/writing .xls files should work. | And reading/writing .xls files should work. | ||
POI is located differently on every system. To easily find where are the files and their names try to search for: libapache-poi-java.list. | |||
in terminal: find / -name "libapache-poi-java*" 2>/dev/null | |||
in octave: | |||
fid = fopen ("/var/lib/dpkg/info/libapache-poi-java.list"); | |||
line = fgetl (fid); | |||
while (line != -1) | |||
javaaddpath(line); | |||
line = fgetl (fid) | |||
endwhile | |||
fclose (fid); | |||
pkg load io; | |||
disp(chk_spreadsheet_support); % should be 2 | |||
== Detailed Information (TL) == | == Detailed Information (TL) == |