• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Need help. Can a servlet do this?

 
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i need a servlet to write and periodically append/modify files (*.txt and *.xml) to a location on the server, based on input from the client side. can jsp or servlets do this, or can a servlet call another java file to do it?
[This message has been edited by Eric Johnson (edited September 12, 2001).]
 
Eric Johnson
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
naever mind, it's been working the whole time, just writting the file to the root of the server, not in the folder with the servlet. thanx though!
 
Ranch Hand
Posts: 285
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Could you share this servlet?
 
Eric Johnson
Ranch Hand
Posts: 49
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
sure. this works on my machine running jswdk 1.0.1. use this html file

to call this servlet

to add another line of text to the created file, use this html

to call this servlet

which imports this class

you can have all the neccessary code in the servlet, but i was experimenting with calling other classes from a servlet, so that's how this one is. hope this helps.
[This message has been edited by Eric Johnson (edited September 26, 2001).]
reply
    Bookmark Topic Watch Topic
  • New Topic