문제

I am developing an android application which generates a report then I would like to transfer this report to a remote server using SFTP. I found some examples using the JSch's API and tried them but every time I try to send the report the app stops.

Is there any other options which I can use to send a file from android device to a server using SFTP?

도움이 되었습니까?

해결책

I solved it. Had to put the code in a Thread.

Thread connectionThread = new Thread(new Runnable() { public void run() {} });

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top