File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes JSP and the fly likes Binary Data in CSV Report Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "Binary Data in CSV Report" Watch "Binary Data in CSV Report" New topic
Author

Binary Data in CSV Report

sudha swami
Ranch Hand

Joined: Apr 24, 2007
Posts: 177
Hi,
One of the data is in the binary format(img) and i need to generate the csv report,Hence the better approach would be to use servlets than JSP. Am i right?
regards
sudha
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35224
    
    7
Yes, JSPs can't be used to generate binary content; you'll need to use servlets.

But CSV is a text format - it can't handle binary data either. Were you thinking of encoding your binary data so that it becomes ASCII, maybe using something like base-64?


Android appsImageJ pluginsJava web charts
sudha swami
Ranch Hand

Joined: Apr 24, 2007
Posts: 177
i dont know how to write the img data into the csv. From my understanding, i can write the image data in the csv if i use the base-64 format in the response object..let me try
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35224
    
    7
CSV is ill-suited to handle large data items like an ASCII-encoded image. A better way might be to store the image separately, and just put the name of the image file in the CSV, so that an application reading the CSV can find it. That way you wouldn't need to encode the image, too, thus making it usable as it is (which it wouldn't be if encoded).
 
I agree. Here's the link: http://zeroturnaround.com/jrebel
 
subject: Binary Data in CSV Report
 
Similar Threads
Open CSV file in Excel not IE
Approach to validate objects in list
I want to open an excel report and not its creation at some location
Jasper Csv export : remove title and footer and remove wrap text
Formatting CSV Files using java??