Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
public String[] holeCDproKategorie(String kategorie) throws RemoteException {
int i, j = 0;
for(i = 0; i < cds.size(); i++) {
if(cds.get(i).kategorie.equals(kategorie))
j++;
}
String[] tmp = new String[j];
j = 0;
for(i = 0; i < tmp.length; i++) {
if(cds.get(i).kategorie.equals(kategorie))
tmp[j++] = cds.get(i).isbn;
}
return tmp;
}
public CD[] holeCDproKategorie(String kategorie) throws RemoteException {
int i, j = 0;
for(i = 0; i < cds.size(); i++) {
if(cds.get(i).kategorie.equals(kategorie))
j++;
}
CD[] tmp = new String[j];
j = 0;
for(i = 0; i < tmp.length; i++) {
if(cds.get(i).kategorie.equals(kategorie))
tmp[j++] = cds.get(i);
}
return tmp;
}
public CD holeCD(String isbn) throws RemoteException {
int i, j = 0;
for(i = 0; i < cds.size(); i++) {
if(cds.get(i).isbn.equals(isbn))
j++;
}
CD tmp = new CD(j);
j = 0;
for(i = 0; i < tmp.length; i++) {
if(cds.get(i).isbn.equals(isbn))
tmp[j++] = cds.get(i);
}
return tmp;
}
public CD holeCD(String isbn) throws RemoteException {
int i;
for(i = 0; i < cds.size(); i++) {
if(cds.get(i).isbn.equals(isbn))
return cds.get(i);
}
return null;
}