SÍI Muchísimas gracias era eso,!!pero ahora se me listan los registros bien, pero la función que tengo de buscar no sé me sigue sin salir. Paso el código que cambie cosas!
Y 

gracias de nuevo!   
Código Java:
Ver original- public static void buscaContacto() { 
-         System- . out- . println("Buscar contactos:");
 
-          
-         try { 
-             while (resultado.next()) { 
-             String-  nombre  =-  resultado. getString("nombre");
 
-             String-  telefono  =-  resultado. getString("telefono");
 
-             System- . out- . println(- nombre  + " " +-  telefono );
 
-             } 
-             System- . out- . println("cinco " +-  ex. getMessage());
 
-             } 
-          
-   
-      } 
-       
-   
-             
-     //nos sale la lista de contactos de nuestro agenda.txt    
-        public static void-  listaContacto () throws IOException {
 
-             System- . out- . println("Listar contactos:");
 
-             try {   
-                      
-                    if(fichero.exists()){   
-                         
-                        System- . out- . println("Leyendo Fichero");
 
-                         
-                       //Lee el fichero linea a linea hasta llegar a la ultima 
-                        while((linea= br.readLine())!=null) {   
-                        //Imprime la linea leida      
-                        }   
-                        System- . out- . println("*Fin Leer Fichero");
 
-                         
-                        br.close();   
-                      }else{   
-                        System- . out- . println("Fichero No Existe");
 
-                      }   
-                       
-                     System- . out- . println(- ex. getMessage());
 
-                }   
-              }   
-          
-           
-   
-          
-          
-   
-          
-   
-          
-         public static void-  setNombre (String-  nombre ) {
 
-             Main.nombre = nombre; 
-         } 
-          
-         public static String-  setNombre () {
 
-              
-             return nombre; 
-         } 
-          
-              
-   
-   
-         public static void-  setTelefono (String-  telefono ) {
 
-             Main.telefono = telefono; 
-         } 
-   
-         public static String-  getTelefono () {
 
-             return telefono; 
-         } 
-   
-             return resultado; 
-         } 
-   
-         public static void-  setResultado (ResultSet-  resultado ) {
 
-             Main.resultado = resultado; 
-         } 
-   
-         public static Contactos getNuevoContacto() { 
-             return nuevoContacto; 
-         } 
-   
-         public static void setNuevoContacto(Contactos nuevoContacto) { 
-             Main.nuevoContacto = nuevoContacto; 
-         } 
-   
-         
-     }