Package example

Source Code of example.BartStations

package example;

import us.monoid.web.Resty;


public class BartStations {

  /**
   * @param args
   * @throws Exception
   * @throws 
   */
  public static void main(String[] args) throws Exception {
    Resty r = new Resty();
    String result = r.xml("http://bart.gov/dev/eta/bart_eta.xml").get("/root/station/eta/estimate[../../name/text()='Powell St.' and ../destination/text()='SF Airport']", String.class);
    System.out.println("Next train to SFO from Powell St.:" + result);
  }

}
TOP

Related Classes of example.BartStations

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.