コード例 #1
0
ファイル: Main.java プロジェクト: bols-blue/testing-
  public static void main(String[] args) {
    try {
      // Create the client resource
      ClientResource resource = new ClientResource("http://www.restlet.org");

      // Customize the referrer property
      resource.setReferrerRef("http://www.mysite.org");

      // Write the response entity on the console
      Representation tmp = resource.get(MediaType.TEXT_HTML);
      System.out.println(tmp.getMediaType());

      tmp.write(System.out);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }