无法解决方法

时间:2016-02-17 07:37:15

标签: android backendless

我想从我的Backendless文件中显示我的Android Studio项目中的“Uploads”文件夹。

这是代码:

Backendless.Files.listing("/Uploads", "*.docs", true, new AsyncCallback<BackendlessCollection<FileInfo>>() {
            @Override
            public void handleResponse(BackendlessCollection<FileInfo> response) {
                Iterator<FileInfo> filesIterator = response.getCurrentPage().iterator();
                while (filesIterator.hasNext()) {
                    FileInfo file = filesIterator.next();
                    String URL = file.getURL();
                    String publicURL = file.getPublicUrl();
                    Date createdOn = new Date(file.getCreatedOn());
                    String name = file.getName();
                }
            }

当我运行代码时,我遇到了这些错误:

Error:(34, 38) error: cannot find symbol method getURL()
Error:(35, 44) error: cannot find symbol method getPublicUrl()
Error:(36, 51) error: cannot find symbol method getCreatedOn()
Error:(37, 39) error: cannot find symbol method getName()
Error:(28, 63) error: incompatible types: <anonymous AsyncCallback<BackendlessCollection<com.example.francis.classdroid.FileInfo>>> cannot be converted to AsyncCallback<BackendlessCollection<com.backendless.files.FileInfo>>

1 个答案:

答案 0 :(得分:1)

这里的问题是错误导入FileInfo类。确保您已导入com.backendless.files.FileInfo

如果您不知道Java中的导入内容,可以阅读更多here。 Java中的导入位于文件的顶部。