This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
i've written a class, Append.class, that has one method, doAppend(String open, String write) that opens file "open" and adds a new line "write" to that file. if Append.class is in the same directory as a servlet i write, can the servlet create an Append object and call the doAppend() method of that object? here is all the code i am using, in this order: Append.java: (what i am tryin to call from my servlet)
PassNgo.java (the servlet that should do the calling)
finally, the html page that gets the info
i would really appreciate any help, thanx [This message has been edited by Eric Johnson (edited September 10, 2001).]
Madhav Lakkapragada
Ranch Hand
Joined: Jun 03, 2000
Posts: 5040
posted
0
In short, yes it is possible to do what you want. Some comments.... - you don't need the main() method in the Append.java - you need to import Append in your servlet. - you are better of writing your own no argument constructor for the Append class (a default is avail, but just good practice) - your choice of varaibles "open" and "write" maynot a good one, IMO anyways, these are method names in java so maybe confusing...