基于Assets

AssetsWebsite可以部署assets中的内容为网站,只要传入你要部署的网站在assets中的路径即可。比如我的网站放在/assets/web/webiste目录下,那么我可以这么写:

AssetManager assetsManager = context.getAssets();
Website website = new AssetsWebsite(assetsManager, "assets/web/website");

这里值得注意的是,因为assets比较特殊,所以在路径的前后不要带上/,不然将无法解析。

例如/assets/web下的网站:new AssetsWebsite(getAssets(), "assets/web");,例如/assets下的网站:new AssetsWebsite(getAssets(), "assets");

注意AssetsWebsite不支持热插拔。

网站首页和index.html

传入的目录中如果存在index.html将作为网站的首页,每一个目录中如果存在index.html,将作为这个目录路径的默认页面。

例如我们把assets根目录作为网站部署目录:

 assets
 ├─index.html
 ├─user
 │  ├─index.html
 │  └─admin.html
 ├─shop
 │  └─index.html
 └─items
    └─index.html

假设我们在某个手机上部署new AssetsWebsite(getAssets(), "assets");为网站,这个手机的本机局域网IP是192.168.1.11,我们指定AndServer监听的端口是8080。

那么对于上方这个结构,默认首页是http://192.168.1.11:8080或者http://192.168.1.11:8080/index.html,那么访问到的资源就是/assets/index.html

如果有人访问http://192.168.1.11:8080/user,那么他访问到的资源是/assets/user/index.html;同样的这个用户访问http://192.168.1.11:8080也可以访问到/assets/user/index.html这个资源。对于/assets/user/admin.html必须明确指定访问资源的路径http://192.168.1.11:8080/。对于/assets/shop目录和/assets/items目录同上。

results matching ""

    No results matching ""