Advertisement
Lauda

Untitled

Jan 11th, 2013
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 11.10 KB | None | 0 0
  1. // CDDisk.java
  2. package lekcija5;
  3.  
  4. import java.io.Serializable;
  5.  
  6. @SuppressWarnings("serial")
  7. public class CDDisk implements Serializable {
  8.  
  9.     private String naziv;
  10.     private String izvodjac;
  11.     private int id;
  12.    
  13.     CDDisk() {
  14.         naziv = "nepoznat";
  15.         izvodjac = new String("nepoznat");
  16.         id = -1;
  17.     }
  18.    
  19.     CDDisk(String naziv, String izvodjac, int id) {
  20.         this.naziv = naziv;
  21.         this.izvodjac = izvodjac;
  22.         this.id = id;
  23.     }
  24.  
  25.     CDDisk(CDDisk cd) {
  26.         this.naziv = cd.naziv;
  27.         this.izvodjac = cd.izvodjac;
  28.         this.id = cd.id;
  29.     }
  30.    
  31.     public String getNaziv() {
  32.         return naziv;
  33.     }
  34.  
  35.     public void setNaziv(String naziv) {
  36.         this.naziv = naziv;
  37.     }
  38.  
  39.     public String getIzvodjac() {
  40.         return izvodjac;
  41.     }
  42.  
  43.     public void setIzvodjac(String izvodjac) {
  44.         this.izvodjac = izvodjac;
  45.     }
  46.  
  47.     public int getId() {
  48.         return id;
  49.     }
  50.  
  51.     public void setId(int id) {
  52.         this.id = id;
  53.     }
  54.  
  55.     public boolean equals(Object obj) {
  56.         if (obj == null)
  57.             return false;
  58.         if (this == obj)
  59.             return true;
  60.         CDDisk d = (CDDisk) obj;
  61.         return (naziv.equals(d.naziv) && izvodjac.equals(d.izvodjac) && id == d.id);
  62.     }
  63.  
  64.     public String toString() {
  65.         return "CD[ " + naziv + ", " + izvodjac + ", " + id + " ]";
  66.     }
  67.    
  68.     public static void main(String[] args) {
  69.         CDDisk d1 = new CDDisk("Novi disk", "Pjevac hitova", 3);
  70.         CDDisk d2 = new CDDisk("Hitovi", "Pevac", 1);
  71.         CDDisk d3 = new CDDisk(d1);
  72.            
  73.         System.out.println(d1);
  74.         System.out.println(d2);
  75.         System.out.println(d3);
  76.        
  77.         if(d1.equals(d2))
  78.             System.out.println("Diskovi su jednaki.");
  79.         else
  80.             System.out.println("Diskovi su razliciti.");
  81.        
  82.         if(d1.equals(d3))
  83.             System.out.println("Diskovi su jednaki.");
  84.         else
  85.             System.out.println("Diskovi su razliciti.");
  86.     }
  87.  
  88. }
  89.  
  90.  
  91. // XCDStorage.java
  92. package lekcija5;
  93.  
  94. import java.util.ArrayList; // probati sa LinkedList i Vector
  95. import java.io.*;
  96.  
  97. @SuppressWarnings("serial")
  98. public class XCDStorage implements Serializable {
  99.    
  100.     private ArrayList<CDDisk> arhiva;
  101.    
  102.     XCDStorage() {
  103.         arhiva = new ArrayList<CDDisk>();
  104.     }
  105.    
  106.     public boolean addCD(CDDisk d) {
  107.         for (int i = 0; i < arhiva.size(); i++)
  108.             if ((arhiva.get(i)).getId() == d.getId())
  109.                 return false;
  110.         return arhiva.add(new CDDisk(d.getNaziv(), d.getIzvodjac(), d.getId()));
  111.     }
  112.    
  113.     public CDDisk removeCD(int id) {
  114.         for (int i = 0; i < arhiva.size(); i++)
  115.             if ((arhiva.get(i)).getId() == id)
  116.                 return arhiva.remove(i);
  117.         return null;
  118.     }
  119.    
  120.     public CDDisk searchCD(int id) {
  121.         for (int i = 0; i < arhiva.size(); i++)
  122.             if ((arhiva.get(i)).getId() == id)
  123.                 return arhiva.get(i);
  124.         return null;
  125.     }
  126.    
  127.     public String toString() {
  128.         if (arhiva.isEmpty()) return "U arhivi nema diskova!";
  129.         String retVal = "Sadrzaj CD arhive je:\n";
  130.         for (int i = 0; i < arhiva.size(); i++)
  131.             retVal += arhiva.get(i) + "\n";
  132. //      for (CDDisk d: arhiva)
  133. //          retVal += d + "\n";
  134.         return retVal;
  135.     }
  136.    
  137.     public void clear(){
  138.         arhiva.clear();
  139.     }
  140.  
  141.     public boolean addNewCD() {
  142.         boolean retVal = false;
  143.         String naziv = null, autor = null;
  144.         int id = -1;
  145.            
  146.         BufferedReader in = null;      
  147.         try {
  148.             in = new BufferedReader(new InputStreamReader(System.in));
  149.             System.out.print("Unesite naziv CD-a: ");
  150.             naziv = in.readLine();
  151.             System.out.print("Unesite ime autora: ");
  152.             autor = in.readLine();
  153.             while (id == -1) {
  154.                 System.out.print("Unesite identifikacioni broj: ");
  155.                 try {
  156.                     id = Integer.parseInt(in.readLine());
  157.                 } catch (NumberFormatException nfe) {
  158.                     System.out.print("Identifikacioni broj mora biti celobrojna vrednost! ");
  159.                 }
  160.             }
  161.             retVal = addCD(new CDDisk(naziv,autor,id));
  162.         } catch (Exception e) {
  163.             e.printStackTrace();
  164.         } finally {
  165.             if (in != null)
  166.                 try {
  167.                     in.close();
  168.                 } catch (Exception e) {
  169.                     e.printStackTrace();
  170.                 }
  171.         }
  172.         return retVal;
  173.     }
  174.  
  175.     public void save(String file) {
  176.         ObjectOutputStream out = null;
  177.         try {
  178.             out = new ObjectOutputStream(new BufferedOutputStream(new FileOutputStream(file)));
  179.             out.writeObject(arhiva);
  180.         } catch (Exception e) {
  181.             e.printStackTrace();
  182.         } finally {
  183.             if (out != null)
  184.                 try {
  185.                     out.close();
  186.                 } catch (Exception e) {
  187.                     e.printStackTrace();
  188.                 }
  189.         }
  190.     }
  191.    
  192.     @SuppressWarnings("unchecked")
  193.     public void load(String file){
  194.         ObjectInputStream in = null;
  195.         try {
  196.             in = new ObjectInputStream(new BufferedInputStream(new FileInputStream(file)));
  197.             arhiva = (ArrayList<CDDisk>) in.readObject();
  198.         } catch (Exception e) {
  199.             e.printStackTrace();
  200.         } finally {
  201.             if (in != null)
  202.                 try {
  203.                     in.close();
  204.                 } catch (Exception e) {
  205.                     e.printStackTrace();
  206.                 }
  207.         }
  208.     }
  209.  
  210.     public void saveText(String file) {
  211.         BufferedWriter out = null;
  212.         try {
  213.             out = new BufferedWriter(new FileWriter(file));
  214.             out.write("CD[ naziv, autor, ID ]");
  215.             out.newLine();
  216.             out.write("----------------------");
  217.             out.newLine();
  218.             for (int i = 0; i < arhiva.size(); i++) {
  219.                 out.write(arhiva.get(i).toString());
  220.                 out.newLine();
  221.             }
  222.         } catch (Exception e){
  223.             e.printStackTrace();
  224.         } finally {
  225.             if (out != null)
  226.                 try {
  227.                     out.close();
  228.                 } catch (Exception e) {
  229.                     e.printStackTrace();
  230.                 }
  231.         }
  232.     }
  233.    
  234.     public static void main(String[] args) {
  235.         XCDStorage cds = new XCDStorage();
  236.         CDDisk d1 = new CDDisk("Stari disk", "Orkestar", 1);
  237.         CDDisk d2 = new CDDisk("Novi disk", "Orkestar", 2);
  238.        
  239.         System.out.println(cds);
  240.        
  241.         cds.addCD(d1);
  242.         cds.addCD(d2);
  243.         cds.addNewCD();
  244.         System.out.println(cds);
  245.        
  246.         CDDisk removed = cds.removeCD(2);
  247.         if (removed != null)
  248.             System.out.println("Uklonjen disk: " + removed);
  249.        
  250.         CDDisk nadjen = cds.searchCD(1);
  251.         if (nadjen != null)
  252.             System.out.println("Nadjen disk: " + nadjen);
  253.  
  254.         System.out.println("*******************************");
  255.         cds.save("cdarhiva.dat");
  256.         System.out.println("Podaci sacuvani u datoteku!");
  257.         System.out.println(cds);
  258.  
  259.         System.out.println("*******************************");
  260.         cds.clear();
  261.         System.out.println("Podaci obrisani iz arhive!");
  262.         System.out.println(cds);
  263.  
  264.         System.out.println("*******************************");
  265.         cds.load("cdarhiva.dat");
  266.         System.out.println("Podaci ucitani iz datoteke!");
  267.         System.out.println(cds);
  268.  
  269.         System.out.println("*******************************");
  270.         cds.saveText("cdarhiva.txt");
  271.         System.out.println("Podaci sacuvani u tekstualnu datoteku!");
  272.         System.out.println(cds);
  273.     }
  274.  
  275. }
  276.  
  277.  
  278. // XCDStorageMap.java
  279. package lekcija5;
  280.  
  281. import java.util.HashMap; // probati sa LinkedHashMap
  282. import java.io.*;
  283.  
  284. @SuppressWarnings("serial")
  285. public class XCDStorageMap implements Serializable {
  286.    
  287.     private HashMap<Integer, CDDisk> arhiva;
  288.    
  289.     XCDStorageMap() {
  290.         arhiva = new HashMap<Integer, CDDisk>();
  291.     }
  292.    
  293.     public boolean addCD(CDDisk d) {
  294.         if (arhiva.containsKey(d.getId()))
  295.             return false;
  296.         arhiva.put(d.getId(), new CDDisk(d.getNaziv(), d.getIzvodjac(), d.getId()));
  297.         return true;
  298.     }
  299.    
  300.     public CDDisk removeCD(int id) {
  301.         return arhiva.remove(id);
  302.     }
  303.    
  304.     public CDDisk searchCD(int id) {
  305.         return arhiva.get(id);
  306.     }
  307.    
  308.     public String toString() {
  309.         if (arhiva.isEmpty())
  310.             return "U arhivi nema diskova!";
  311.            
  312.         String retVal = "Sadrzaj CD arhive je:\n";
  313.         for (CDDisk d: arhiva.values())
  314.             retVal += d + "\n";
  315.         return retVal;
  316.     }
  317.    
  318.     public void clear(){
  319.         arhiva.clear();
  320.     }
  321.  
  322.     public boolean addNewCD(){
  323.         boolean retVal = false;
  324.         String naziv = null, autor = null;
  325.         int id = -1;
  326.            
  327.         BufferedReader in = null;      
  328.         try {
  329.             in = new BufferedReader(new InputStreamReader(System.in));
  330.             System.out.print("Unesite naziv CD-a: ");
  331.             naziv = in.readLine();
  332.             System.out.print("Unesite ime autora: ");
  333.             autor = in.readLine();
  334.             while (id == -1) {
  335.                 System.out.print("Unesite identifikacioni broj: ");
  336.                 try {
  337.                     id = Integer.parseInt(in.readLine());
  338.                 } catch (NumberFormatException nfe) {
  339.                     System.out.print("Identifikacioni broj mora biti celobrojna vrednost! ");
  340.                 }
  341.             }
  342.             retVal = addCD(new CDDisk(naziv,autor,id));
  343.         } catch (Exception e) {
  344.             e.printStackTrace();
  345.         } finally {
  346.             if (in != null)
  347.                 try {
  348.                     in.close();
  349.                 } catch (Exception e) {
  350.                     e.printStackTrace();
  351.                 }
  352.         }
  353.         return retVal;
  354.     }
  355.  
  356.     public void save(String file){
  357.         ObjectOutputStream out = null;
  358.         try {
  359.             out = new ObjectOutputStream(new BufferedOutputStream(new FileOutputStream(file)));
  360.             out.writeObject(arhiva);
  361.         } catch (Exception e) {
  362.             e.printStackTrace();
  363.         } finally {
  364.             if (out != null)
  365.                 try {
  366.                     out.close();
  367.                 } catch (Exception e) {
  368.                     e.printStackTrace();
  369.                 }
  370.         }
  371.     }
  372.    
  373.     @SuppressWarnings("unchecked")
  374.     public void load(String file){
  375.         ObjectInputStream in = null;
  376.         try {
  377.             in = new ObjectInputStream(new BufferedInputStream(new FileInputStream(file)));
  378.             arhiva = (HashMap<Integer, CDDisk>) in.readObject();
  379.         } catch (Exception e) {
  380.             e.printStackTrace();
  381.         } finally {
  382.             if (in != null)
  383.                 try {
  384.                     in.close();
  385.                 } catch (Exception e) {
  386.                     e.printStackTrace();
  387.                 }
  388.         }
  389.     }
  390.  
  391.     public void saveText(String file) {
  392.         BufferedWriter out = null;
  393.         try {
  394.             out = new BufferedWriter(new FileWriter(file));
  395.             out.write("CD[ naziv, autor, ID ]");
  396.             out.newLine();
  397.             out.write("----------------------");
  398.             out.newLine();
  399.             for(CDDisk d: arhiva.values()) {
  400.                 out.write(d.toString());
  401.                 out.newLine();
  402.             }
  403.         } catch (Exception e){
  404.             e.printStackTrace();
  405.         } finally {
  406.             if (out != null)
  407.                 try {
  408.                     out.close();
  409.                 } catch (Exception e) {
  410.                     e.printStackTrace();
  411.                 }
  412.         }
  413.     }
  414.    
  415.     public static void main(String[] args) {
  416.         XCDStorageMap cds = new XCDStorageMap();
  417.         CDDisk d1 = new CDDisk("Stari disk", "Orkestar", 1);
  418.         CDDisk d2 = new CDDisk("Novi disk", "Orkestar", 2);
  419.        
  420.         System.out.println(cds);
  421.        
  422.         cds.addCD(d1);
  423.         cds.addCD(d2);
  424.         cds.addNewCD();
  425.         System.out.println(cds);
  426.        
  427.         CDDisk removed = cds.removeCD(2);
  428.         if (removed != null)
  429.             System.out.println("Uklonjen disk: " + removed);
  430.        
  431.         CDDisk nadjen = cds.searchCD(1);
  432.         if (nadjen != null)
  433.             System.out.println("Nadjen disk: " + nadjen);
  434.  
  435.         System.out.println("*******************************");
  436.         cds.save("cdarhiva.dat");
  437.         System.out.println("Podaci sacuvani u datoteku!");
  438.         System.out.println(cds);
  439.  
  440.         System.out.println("*******************************");
  441.         cds.clear();
  442.         System.out.println("Podaci obrisani iz arhive!");
  443.         System.out.println(cds);
  444.  
  445.         System.out.println("*******************************");
  446.         cds.load("cdarhiva.dat");
  447.         System.out.println("Podaci ucitani iz datoteke!");
  448.         System.out.println(cds);
  449.  
  450.         System.out.println("*******************************");
  451.         cds.saveText("cdarhiva.txt");
  452.         System.out.println("Podaci sacuvani u tekstualnu datoteku!");
  453.         System.out.println(cds);
  454.     }
  455.  
  456. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement