j p
unread,Oct 21, 2011, 3:47:13 AM10/21/11Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Processing.js
Hey everyone I want to save a txt file with some data from my program
on the server that the app is on. I tried using saveStrings but it
doesn't seem to work, as no file seems to be created.
This is an example of what i'm trying to do:
void setup()
{
size(200,200);
String words = "apple bear cat dog";
String[] list = split(words, ' ');
// now write the strings to a file, each on a separate line
saveStrings("nouns.txt", list);
}
void draw()
{
}
Alternatively is there another way I should be saving a txt file to my
server?