amigo gracias por la ayuda, mira hice algo aqui pero esta malo y se ve que esta malo, disculpame pero es que nunca he trabajado con esto asi y no tengo idea, mira lo que hice
Código:
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fileChooser.getSelectedFile();
FileInputStream fis = null;
BufferedInputStream bis = null;
DataInputStream dis = null;
String cont="";
byte[] cont2 = null;
int bites=0;
try {
fis = new FileInputStream(file);
// Here BufferedInputStream is added for fast reading.
bis = new BufferedInputStream(fis);
dis = new DataInputStream(bis);
bites = dis.read(cont2);
System.out.println("Bites: "+bites+" Cont2: "+cont2.length);
// dispose all the resources after using them.
fis.close();
bis.close();
dis.close();
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
se rompe, a ver que mal hago, gracias