I'm creating two projects, an Java and other Android where the two are synchronizing files between them.
My problem is that the client does not receive notification that sending the file over, but the server performs this submission.
Client Code:
public boolean recebeCroqui(Integer idLocalidade, ConnectionSocket connection) throws IOException{
//Abre os devidos canais de comuicação
DataOutputStream out = connection.getDataOutput();
InputStream ins = connection.getIns();
//Envia um SINC_CROQUI - avisando ao servidor para sincronizar um croqui
Log.d("ufop.smid", "Recebendo um croqui.");
out.writeUTF(Constantes.SINC_CROQUI);
//Envia idLocalidade
Log.d("ufop.smid", "Enviando Localidade.");
out.writeInt(idLocalidade);
//FileOutputStream para salvar o arquivo
File path = new File(Environment.getExternalStorageDirectory() + Constantes.DIRETORIO_CROQUIS);
Log.d("ufop.smid", "Criando diretório caso não exista.");
path.mkdirs();
BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream(new File(path, idLocalidade + ".png")));
//Recebe os bytes do croqui
Log.d("ufop.smid", "Recebendo bytes.");
byte[] buffer = new byte[Constantes.BUFFER_SIZE];
//Envia os bytes
Integer leitura = null;
do{
leitura = ins.read(buffer, 0 , buffer.length);
Log.d("ufop.smid", "leitura=" + leitura);
bos.write(buffer, 0, leitura);
bos.flush();
} while(leitura != -1);
//Fecha o arquivo
bos.close();
Log.d("ufop.smid", "Croqui recebido com sucesso!");
return true;
}
Server Code:
public boolean sincronizaCroquis(DataInputStream in, DataOutputStream out, OutputStream ous) throws IOException {
//Aguarda um OK
msg = in.readUTF();
int qtd = 0;
//Verifica a mensagem recebida
if (msg.equals(Constantes.OK)) {
controle.addMessage("Sincronizando croquis.");
//Aguarda um pedido de sincronização
msg = in.readUTF();
//Enquanto o cliente estiver sincronizando croquis
while (msg.equals(Constantes.SINC_CROQUI)) {
//Caso a mensagem seja para sincronizar croqui
if (msg.equals(Constantes.SINC_CROQUI)) {
//Recebe o idLocalidade
int idLocalidade = in.readInt();
//Abre o arquivo para envio
File file = new File("croquis/" + idLocalidade + ".png");
BufferedInputStream bis = new BufferedInputStream(new FileInputStream(file));
//Cria um buffer
byte[] buffer = new byte[Constantes.BUFFER_SIZE];
//Envia dados
Integer leitura = null;
do {
leitura = bis.read(buffer, 0, buffer.length);
System.out.println("Enviando= " + leitura);
System.out.flush();
if (leitura != -1) {
ous.write(buffer, 0, leitura);
} else {
ous.write(leitura);
}
ous.flush();
} while (leitura != -1);
bis.close();
System.out.println("Saiu " + leitura);
qtd++;
}
msg = in.readUTF();
}
controle.addMessage("Total de croquis sincronizados: " + qtd);
}
return true;
}