使用在线文件目录填充tableview

时间:2016-12-07 15:54:58

标签: swift uitableview

我有以下代码

public static MaterialDialog createDarkLoadingDialog(Activity activity) {
        ContextThemeWrapper ctw = new ContextThemeWrapper(activity, R.style.MyAlertDialogStyle);
        return new MaterialDialog.Builder(ctw)
                .title(R.string.loading)
                .content(R.string.wait)
                .progress(true, 0)
                .cancelable(false)
                .build();
    }

我正在尝试使用此目录的内容填充tableview,目前我只是想让它打印出那些但是收到以下错误,

  

“Abbey Road”文件夹不存在。

我做错了什么,甚至可以做到这一点?

enter image description here

1 个答案:

答案 0 :(得分:1)

网址不是文件网址。

您的网址指向HTML网页 - 这与文件系统文件夹无关。

您通过HTML看到的服务器文件夹不会直接透露给您作为实际文件夹。