Advertisement
Guest User

Untitled

a guest
Dec 12th, 2014
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.67 KB | None | 0 0
  1. import java.util.*;
  2. import java.io.*;
  3.  
  4. public class program {
  5.  
  6.     static void Main(String[] args) throws IOException{
  7.         HashMap<String, Object> map = new HashMap<String, Object>();
  8.         map.put("login", "przemyslaw" );
  9.         map.put("haslo", "takietam" );
  10.        
  11.         InputStreamReader converted = new InputStreamReader(System.in);
  12.         BufferedReader in =new BufferedReader(converted);
  13.         String value = in.readLine();
  14.        
  15.         String user = Uzytkownik.getMap(map);
  16.        
  17.         user = Uzytkownik.readLine();
  18.     }
  19. public class Uzytkownik{
  20.    
  21.    
  22.    
  23.     private Uzytkownik(){}
  24.    
  25.     public static Uzytkownik getMap(HashMap<String, Object>()){
  26.         String user = new Uzytkownik();
  27.        
  28.        
  29.        
  30.        
  31.     }
  32. }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement