3
獲取Java中的當前網頁文件夾這似乎很簡單,但似乎我在Google找不到答案。 我需要在我的webroot文件夾中發送文件列表,類似於目錄瀏覽。用Jersey JAX RS.WS
我正在使用Glassfish,JAX-RS.WS和genson for POJO作家。
應用程序的結構是這樣的:
download
|- build
|- dist
|- src
|- web
| |- files
下面是我的代碼
@Path("home")
public class HomeResource {
@Context
private UriInfo context;
@GET
@Produces(MediaType.APPLICATION_JSON)
public String get() {
return System.getProperty("user.dir"); // ??? Any idea what should be in here?
}
}
,它給了結果爲:
/usr/lib/glassfish/glassfish/domains/domain1/config
我需要它指向
/sites/download/web/
或至少
/sites/download/
,因爲我需要我的服務給例如像列表:
/files/item.zip
/files/document.pdf
任何人都可以請幫助?
謝謝
That works .. Thank you – Magician