-
Notifications
You must be signed in to change notification settings - Fork 0
/
funciones.java
212 lines (200 loc) · 5.05 KB
/
funciones.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
/**
FACTORY
*/
public static Objeto factory(String[] data){
int atr1,atr2;
float atr3;
if(data.length() != 5){
return null;
}else{
try{
atr1 = Integer.parseInt(data[0]);
atr2 = Integer.parseInt(data[1]);
atr3 = Float.parseFloat(data[3]);
}catch(NumberFormatException e){
return null;
}
return new Objeto(atr1,atr2,data[2],atr3,data[4]);
}
}
/**
ORDENAR
*/
public void ordenarObjetos(){
//Ordenar por un parámetro
listaObjetos.sort(Comparator.comparing(Objeto::getAtributo1));
//Ordenar por mas de 1 parámetro (2 en este caso)
listaObjetos.sort(Comparator.comparing(Objeto::getAtributo1).thenComparing(Objeto::getAtributo2));
}
/**
DAR DE ALTA
*/
public void altaObjeto(String[] data){
Objeto objeto = Objeto.factory(data);
if(objeto != null){
listaObjetos.add(objeto);
}
}
/**
DAR DE BAJA
*/
public void bajaObjeto(String eliminar){
int indiceABorrar = -1;
int existe=0;
for(Objeto objeto : listaObjetos){
if(eliminar.equalsIgnoreCase(objeto.eliminar)){
existe=1;
break;
}
}
if(existe==1){
for(int i=1;i<listaObjetos.size();i++){
if(eliminar.equalsIgnoreCase(listaObjetos.get(i).eliminar)){
indiceABorrar=i;
}
}
listaObjetos.remove(indiceABorrar);
}else{
System.err.printf("No pudo borrarse");
}
}
/**
MODIFICAR ATRIBUTOS
*/
public void modificar(String Atributo, String newAtributo){
for(Objeto objeto : listaObjetos){
if(objeto.getAtributo1().equalsIgnoreCase(Atributo)){
objeto.setAtributo1(newAtributo);
}
}
}
/**
CONSULTAR OBJETOS
*/
public String consultar(String Atributo){
String consulta="";
for(Objeto objeto : listaObjetos){
if(objeto.getAtributo1().equalsIgnoreCase(Atributo)){
for(String aux : objeto.auxiliar){
consulta = consulta + aux + "\n";
}
}
}
}
/**
ARCHIVOS DELIMITADOS IMPORTAR
*/
public void importar(){
String[][] data;
Path p = Rutas.pathToFileInFolderOnDesktop("FOLDER","archivo.txt");
File f = p.toFile();
try{
data = importFromDisk(f,"#");
}catch(IOException e){
e.printStackTrace();
}
Objeto objeto;
for(String[] x : data){
objeto = Objeto.factory(x);
if(objeto != null){
listaObjetos.add(objeto);
}
}
}
public void importar(){
Path p = Rutas.pathToFileInFolderOnDesktop("Folder","archivo.txt");
if(p.toFile().exists()){
try{
ArrayList<String> lineas = (ArrayList<String>) readAllLines(p);
String delim = "#";
for(String i : lineas){
Objeto obj = o.factory(i,delim);
if(obj!=null){
listaObjetos.add(obj);
}else{
System.err.printf("Error.%n");
}
}
}catch(IOException e){
System.err.printf("Error.%n");
}
}
}
.
/**
ARCHIVOS DELIMITADOS EXPORTAR
*/
public void exportar(){
Path p = Rutas.pathToFileInFolderOnDesktop("FOLDER","archivo.txt");
File f = p.toFile();
String[][] data = new String[listaObjetos.size()][];
for(int i=0;i<listaObjetos.size();i++){
data[i]=listaObjetos.get(i).toString().split("#");
}
try{
exportToDisk(data,f,"#");
}catch(IOException e){
e.printStackTrace();
}
}
/**
ARCHIVOS BINARIOS CARGAR
*/
public void cargar(){
Path p = Rutas.pathToFileInFolderOnDesktop("FOLDER","archivo.bin");
File f = p.toFile();
try{
FileInputStream fis = new FileInputStream(f);
BufferedInputStream bis = new BufferedInputStream(fis);
ObjectInputStream ois = new ObjectInputStream(bis);
listaObjetos = (ArrayList<Objeto>) ois.readObject();
ois.close();
}catch(IOException e ){
e.printStackTrace();
}
}
/**
ARCHIVOS BINARIOS GUARDAR
*/
public void guardar(){
Path p = Rutas.pathToFileInFolderOnDesktop("FOLDER","archivo.bin");
File f = p.toFile();
try{
FileOutputStream fos = new FileOutputStream(f);
BufferedOutputStream bos = new BufferedInputStream(fos);
ObjectOutputStream oos = new ObjectInputStream(bos);
oos.writeObject(listaObjetos);
oos.close();
} catch(IOException e ){
e.printStackTrace();
}
}
/**
TOSTRING
*/
public void toString(){
return atr1 + "#" + atr2 + "#" + atr3 + "#";
}
public void toString(){
String data = "";
data = getAtributo1() + "#" + getAtributo2() + "#";
for(String aux : auxiliar){//auxiliar es un arraylist<string> por ejemplo profesores, asignaturas
data = data + " " + aux;
}
return data;
}
/**
ARRAYLIST DE OBJETOS A MATRIZ DE STRING
*/
public String[][] ArrayListToMatrix(){
String[][] data = new String[listaObjetos.size()][];
for(int i=0;i<listaObjetos.size();i++){
data[i]=listaObjetos.get(i).toString().split("#");
}
return data;
}
// MOSTRAR POR PANTALLA
public void mostrarObjetos(){
String[][] data = ArrayListToMatrix();
printToScreen3(data);
}