Ciao a tutti,
il codice sotto (copiato da un esempio di Erel) mi da questo errore:
(RuntimeException) java.lang.RuntimeException: Object should first be initialized (List).
Quale lista devo inizializzare?
Grazie
il codice sotto (copiato da un esempio di Erel) mi da questo errore:
(RuntimeException) java.lang.RuntimeException: Object should first be initialized (List).
Quale lista devo inizializzare?
Grazie
B4X:
Dim ftp As FTP
ftp.Initialize("FTP", "server", 21, "user", "password")
ftp.PassiveMode = True
ftp.List("/")
Sub FTP_ListCompleted (ServerPath As String, Success As Boolean, Folders() As FTPEntry, Files() As FTPEntry)
Log(ServerPath)
If Success = False Then
Log(LastException)
Else
For i = 0 To Folders.Length - 1
Log(Folders(i).Name)
Next
For i = 0 To Files.Length - 1
Log(Files(i).Name & ", " & Files(i).Size & ", " & DateTime.Date(Files(i).Timestamp))
Next
End If
End Sub