首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

Restlet2.0学习——资料路径访问

2012-07-19 
Restlet2.0学习——文件路径访问由于就是官方的实例照搬了一下,简单尝试没有问题。就先把代码贴出来了。public

Restlet2.0学习——文件路径访问
由于就是官方的实例照搬了一下,简单尝试没有问题。就先把代码贴出来了。

public class DirStartRun {/** * web browser input:http://localhost:8182/ * @param args * @throws Exception */public static void main(String[] args) throws Exception {// URI of the root directory.   final String ROOT_URI = "file:///c:/restlet/docs/api/";      // Create a component   Component component = new Component();   component.getServers().add(Protocol.HTTP, 8182);   component.getClients().add(Protocol.FILE);     // Create an application   Application application = new Application() {       @Override      public Restlet createInboundRoot() {       return new Directory(getContext(), ROOT_URI);       }   };     // Attach the application to the component and start it   component.getDefaultHost().attach(application);   component.start();  }}

热点排行