Code Newbie
News     Forums     Search     Members     Sign Up    

My Code Newbie
Username

Password

Articles/Snippets
ASP Classic
ASP.NET
C
C#
C++
HTML / CSS
Java
Javascript
Linux / BSD
Perl
PHP
Python
Ruby
SQL
VB 6
VB.NET

C.N. Friends
  Planet Rome

Link to Us!
Code Newbie
  Code Newbie
    forums
Old 07-27-2004, 03:43 PM   #1 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,530
sde is on a distinguished road
steam a csv file for download.

i would like to create a csv file on the fly, then prompt the user to download it.

has anyone done this? any good tutorials out there?
__________________
Mike
sde is offline   Reply With Quote
Old 07-27-2004, 04:15 PM   #2 (permalink)
sde
Moderator
 
sde's Avatar
 
Join Date: May 2002
Location: us.ca
Posts: 4,530
sde is on a distinguished road
i found this, it looks like it is going to work
Code:
String str = "testing";
  byte[] outBytes = str.getBytes();
  response.setContentType ("application/x-msexcel");
  response.setContentLength(outBytes.length);
  
  response.setHeader ("Content-Disposition", "inline;filename=\"ComputeOrder.csv\""); 

  byte[] buf = outBytes;
  int length = 0;
  ServletOutputStream op = response.getOutputStream ();
  op.write(buf,0,buf.length);
  op.close();
__________________
Mike
sde is offline   Reply With Quote
Reply

Bookmarks

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
csv file to mysql using php jayteema PHP 10 07-02-2004 12:20 PM


All times are GMT -8. The time now is 01:11 AM.


Powered by vBulletin® Version 3.7.0
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0 RC8 ©2007, Crawlability, Inc.





Copyright © 2000-2008, Milano Interactive
Web Hosting provided by Portal 360 Web Hosting