• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

How to write in file using OutputStream

 
Greenhorn
Posts: 27
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator




Reconstruction class and its method recoverfile gives us back an array of ascii values . Let say [49,78,69,59] . Now this array content i pass to the FileToBeTaken's method fileBack . This class and its method is given below :



Now what i do not get is why my file my.txt has no content in it ? i have a byte of array and with ascii values but the content its not going to the file and so the file is still empty.
I am wondering am i doing something wrong? Can anyone explain me how to solve this?
 
author and iconoclast
Posts: 24207
46
Mac OS X Eclipse IDE Chrome
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
From what I can see, this ought to work given that the array really does contain what you expect. When you run the whole program, do you see the print statements printing what you expect?
 
reply
    Bookmark Topic Watch Topic
  • New Topic