I'm open to using a simple FileDialog option for both print and save but I'm stuck on the proper syntax for an applet. It is the use of JApplet's Container versus a JFrame in an application. The applet has to appear within the html page.

Any help would be much appreciated.

My code for the save button activation is as follows:

ActionListener buttonHandlerS = new ActionListener() {
public void actionPerformed(ActionEvent e) {
textArea.getText();
FileWriter writer = null;
try {
textArea.getText();
writer = new FileWriter("c://matrix_small_projects.txt");
textArea.write(writer);
} 

catch (IOException exception) {
System.err.println("Save not successful");
exception.printStackTrace();
} 

finally {
if (writer != null) 
{
try{
writer.close();
} 
catch (IOException exception) {
System.err.println("Error closing writer");
exception.printStackTrace();
}
}
}
saveContent.addActionListener(buttonHandlerS);
};
};

What does the API docs say about what getText() returns (and whether or not there is even a write() method in JTextArea). And how do the tutorials show about using a FileWriter?

Come on man. You can at least make a real attempt. You can't just make stuff up as you go along, you know?

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.