Ver Mensaje Individual
  #4 (permalink)  
Antiguo 12/07/2011, 10:08
pipook
 
Fecha de Ingreso: abril-2010
Ubicación: Cartagena
Mensajes: 19
Antigüedad: 14 años, 8 meses
Puntos: 1
Respuesta: Subir archivo a servidor externo con aplicacion de escritorio

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