Package presentation

Examples of presentation.FileControllerP.chooseFile()


    * @return -
    * @throws -
    */
    public void saveFile(JTextArea ta) {
        FileControllerP fCP = new FileControllerP();
        _fc = fCP.chooseFile();
        File name = _fc.getSelectedFile();

        if(!name.exists()) {
            try {
                PrintWriter output = new PrintWriter(new FileWriter(name + ".txt",true));
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.