Klassenbiliothek fuer Dateiverwaltung
ulrich
2 days ago e1fae256e29eb7a317d5a810d7e24751eb6032eb
commit | author | age
e369b9 1 /*
c45b52 2   fm - File management class library
e369b9 3   Copyright (C) 2024  Ulrich Hilger
U 4
5   This program is free software: you can redistribute it and/or modify
6   it under the terms of the GNU Affero General Public License as
7   published by the Free Software Foundation, either version 3 of the
8   License, or (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU Affero General Public License for more details.
14
15   You should have received a copy of the GNU Affero General Public License
16   along with this program.  If not, see <https://www.gnu.org/licenses/>.
17  */
18 package de.uhilger.fm;
19
20 import java.io.File;
21 import java.io.FileOutputStream;
22 import java.io.IOException;
23 import java.io.OutputStream;
24 import java.net.URLDecoder;
25 import java.util.logging.Level;
26 import java.util.logging.Logger;
27
28 /**
29  * Dateien und Ordner anlegen. 
30  * Ggf. deren Inhalt schreiben.
31  * 
32  * @author Ulrich Hilger
33  * @version 0.1, 07.11.2024
34  */
35 public class Writer {
36
37   public int newFolder(File file) {
38     if (!file.exists()) {
39       file.mkdir();
40       return 0;
41     } else {
42       return -1;
43     }
44   }
45   
46   /**
47    * Datei speichern. Eine existierende Datei gleichen Namens wird 
48    * zuvor geloescht (= Ueberschreiben). 
49    * 
50    * Wenn Aenderungen in eine schon existierende Datei gespeichert werden 
51    * sollen, ist es noetig, die existierende Datei mit dem neuen Inhalt zu 
52    * ueberschreiben, so, wie es diese Methode ausfuehrt.
53    * 
54    * Soll statdessen eine Datei neu erstellt werden und wird dabei also unterstellt, dass 
55    * unter ihrem Namen am Ablageort noch keine Datei gleichen Namens existiert, muss 
56    * vor der Verwendung dieser Methode sichergestellt werden, dass es so ist.
57    * 
58    * @param file
59    * @param content
60    * @return 0, wenn erfolgreich, sonst -1
61    */
62   public int speichern(File file, String content) {
63     try {
64       if (file.exists()) {
65         /*
66         muss delete() sein?
67         pruefen: ueberschreibt der FileWriter den alten Inhalt oder
68         entsteht eine unerwuenschte Mischung aus altem und neuem
69         Inhalt?
70         */
71         file.delete();
72       } else {
73         file.getParentFile().mkdirs();
74       }
75       String decoded = URLDecoder.decode(content, "UTF-8");
76       byte[] bytes = decoded.getBytes();
77       file.createNewFile();
78       try (OutputStream os = new FileOutputStream(file)) {
79         os.write(bytes);
80         os.flush();
81       }
82       return 0;
83     } catch (IOException ex) {
84       Logger.getLogger(Writer.class.getName()).log(Level.SEVERE, null, ex);
85       return -1;
86     }      
87   }  
88 }