如何在play框架中发送请求get方法

时间:2013-07-11 02:25:47

标签: java playframework playframework-1.x

如何发送获取方法的请求?我有玩框架应用程序和java桌面应用程序。我想从java桌面发送一个请求,用方法get来播放框架。

这里是路线文件播放框架

# Routes
# This file defines all application routes (Higher priority routes first)
# ~~~~

# Home page
GET     /                                 Application.index
POST    /auth                             Application.authenticator
POST    /datacompany                      Application.getDataCompany
POST    /listdatafile                     Application.getListFile
POST    /urlfile                          Application.getUrlFile
GET     /getFile/{id}                     Application.getFile
# Ignore favicon requests
GET     /favicon.ico                            404

# Map static resources from the /app/public folder to the /public path
GET     /public/                         staticDir:public

# Catch all                 
*/{controller}/{action}                  {controller}.{action}

这是应用程序控制器播放中的方法

  public static void getFile(String id){
   //String id = params.get("id");
        System.out.println("ID : "+id);
        FileInputStream stream = ResumableDownloader.getFile(id);
        renderBinary(stream);
    }

哦,我现在只想发送请求GET /getFile/{id} Application.getFile

感谢和抱歉我的英语不好

1 个答案:

答案 0 :(得分:0)

您需要在Java桌面应用程序中使用HTTP客户端。查看HttpClient:http://hc.apache.org/httpcomponents-client-ga/