Package presentation

Examples of presentation.FileControllerP


* @author jose.alberto.villaverde
*/
public class FileControllerDomain {

    public JFileChooser openFile() {
        FileControllerP _fc = new FileControllerP();
        JFileChooser aux = _fc.openFile();
       
        return aux;

    }
View Full Code Here


    * @param JTextArea ta: JTextArea del que s'ha de guardar el contingut en un fitxer de text.
    * @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

Related Classes of presentation.FileControllerP

Copyright © 2018 www.massapicom. 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.