-
Notifications
You must be signed in to change notification settings - Fork 385
/
Copy pathmarkor-nextcloud.txt.java
35 lines (29 loc) · 1.25 KB
/
markor-nextcloud.txt.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Other libs
implementation 'com.github.nextcloud:android-library:1.3.5'
new Thread(){
@Override
public void run() {
x();
}
}.start();
}
private OwnCloudClient mClient;
private Handler mHandler;
private void x(){
Uri serverUri = Uri.parse("https://cloud.myserver.com");
mClient = OwnCloudClientFactory.createOwnCloudClient(serverUri, this, true);
mClient.setCredentials(
OwnCloudCredentialsFactory.newBasicCredentials(
"username","PASSWORD"
)
);
File downFolder = new File(_appSettings.getNotebookDirectoryAsStr());
String remotePath = FileUtils.PATH_SEPARATOR + "Documents" + FileUtils.PATH_SEPARATOR + "todo.txt";
DownloadFileRemoteOperation downloadOperation = new DownloadFileRemoteOperation(remotePath, downFolder.getAbsolutePath());
downloadOperation.addDatatransferProgressListener(new OnDatatransferProgressListener() {
@Override
public void onTransferProgress(long progressRate, long totalTransferredSoFar, long totalToTransfer, String fileAbsoluteName) {
}
});
downloadOperation.execute(mClient);
}