Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to decode base64 ziped pdf file and write decoded data to a tempfile . And need to save it on over local file system.in rails.

share|improve this question
Cool story, bro. But what have you tried? – nightcracker Aug 6 '12 at 12:44
Ohh . i got a solution .thx – zorro Aug 6 '12 at 13:18
Why not share your solution as an answer and then mark it as an accepted answer ? – bUKaneer Aug 6 '12 at 14:05

1 Answer

decoded_data=Base64.decode64(encoded_data)
file_name = "test.zip"
temp_file = Tempfile.new("filename-#{Time.now}")
File.open(temp_file, 'wb') {|f| f.write(decoded_data)}
send_file temp_file.path, :type => 'application/zip', :filename => file_name
share|improve this answer
@Tisho what you changed ? – zorro Aug 7 '12 at 11:20
I've changed the formatting - to be rendered as a code block. Nothing changed in the text. Code blocks always look better when properly formatted. – Tisho Aug 7 '12 at 11:27
ok Thx Tisho .... – zorro Aug 7 '12 at 11:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.