Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. package zad2;
  2.  
  3. public class Main {
  4.  
  5. public static void main(String[] args) {
  6. // TODO Auto-generated method stub
  7. String fname = System.getProperty("user.home") + "/dictionary.txt";
  8. System.out.println(fname);
  9. Dictionary d = new Dictionary(fname);
  10. d.show();
  11. System.out.println(d.dictionary.values());
  12. //d.lookup("dzem");
  13. //System.out.println(d.dictionary.get("Java").get(0));
  14. //System.out.println(d.dictionary);
  15.  
  16. }
  17.  
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement