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).]