I'm developing application that send internal file (of application) on network with sockets. If I use AsyncTask for that, then file cannot be read. In main class I can normaly read it. I need AsyncTask because I want to use ProgressDialog (ProgressBar). Thanks for help.
public class send{
File f;
Context c;
public send(Context context){
c.this = context;
//some code
f = new File(context.getFilesDir(), "pom.txt");
System.out.println(f.canRead() + " " + f.lenght()); //true , >0
new sendFile(context).execute();
}
private class sendFile extends AsyncTask<Void, Integer, Void> {
Context ca;
public sendFile(Context context){
this.ca = context;
}
@Override
protected Void doInBackground(Void... arg0) {
try{
//some code , open Socket
System.out.println(f.canRead() + " " + f.lenght()); //false , ==0
f = new File(ca.getFilesDir(), "pom.txt");
//or same thing with:
f = new File(c.getFilesDir(), "pom.txt");
System.out.println(f.canRead() + " " + f.lenght()); //false , ==0
//some code
FileInputStream fis = new FileInputStream(f); //null
//code for sending file
fis.close();
s.close();
} catch (IOException e) {}
return null;
}
}
}
whole code (as requested):
public class send{
InetAddress adresa = null;
Context con;
public send(Context context) {
this.con = context;
adresa = auth.getIpAdr(); //get ip
new sendFile(context).execute();
}
private class sendFile extends AsyncTask<Void, Integer, Void>{
ProgressDialog popup;
Context c;
public sendFile(Context context){
this.c = context;
}
@Override
protected Void doInBackground(Void... arg0) {
try{
Socket s = new Socket(adresa,95123);
File f = new File(c.getFilesDir(), "pom.txt"); //internal file ... get null
byte[] polje = new byte[65536];
int len;
FileInputStream fis = new FileInputStream(f); //null
DataOutputStream dos = new DataOutputStream(new BufferedOutputStream(s.getOutputStream()));
dos.writeUTF(f.getName());
while((len = fis.read(polje)) != -1){
dos.write(polje, 0, len);
}
dos.flush();
dos.close();
fis.close();
s.close();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
@Override
protected void onPostExecute(Void result) {
// TODO Auto-generated method stub
super.onPostExecute(result);
popup.dismiss();
}
@Override
protected void onPreExecute() {
// TODO Auto-generated method stub
super.onPreExecute();
popup = new ProgressDialog(context);
popup.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
popup.setMessage("Sending files...");
popup.setTitle("Sending");
popup.setIndeterminate(false);
popup.show();
}
@Override
protected void onProgressUpdate(Integer... values) {
// TODO Auto-generated method stub
super.onProgressUpdate(values);
popup.setProgress(values[0]);
}
}
}