[Aglets-developer] Aglet, creating a file, sending an aglet to another computer
Status: Beta
Brought to you by:
cat4hire
From: <tom...@gm...> - 2005-03-29 07:25:05
|
> Hi all, Hi Ghada! > I want to ask about some points in Aglets2.0.2 package. OK! > First:when i try to run Tahiti sould i run it on on computer(one computer has Tahiti and try to send to another computer doesn`t have Tahiti on it) OR two computers(each computer has it`s Tahiti and send to each other). You must have the Tahiti server up and running on both computers. As far as I remember, you also need to have the class file of the aglet you are sending in the "public" folder on both computers. > Second:I want the Aglet create a new file on" local drive" in windows,which mean once i created the aglet i found the file on local drive on my computer. You could use the standard Java way to do this. Try to create the file in the onCreation method and the file will be there when the aglet is up and running (I think..) : public void onCreation() { // Create the file } / Tom |