Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试构建一个Tropo Ruby 应用程序,我需要检索 HTTPS GET 的结果。Tropo 平台没有 httpclient Ruby gem,所以我不能使用它。使用的 Ruby 引擎是 JRuby,因此建议使用 Java URL类来执行请求。我已经玩了一点,我似乎能够创建 URL 对象,但现在正在努力如何获得执行请求的结果。我该怎么做?
javaURL = java.net.URL.new svcURL transferResult = javaURL.getContent()
我不确定 getContent() 究竟做了什么,但您可以使用 openStream() ,它为您提供了一个可供读取的 InputStream。
javaURL = java.net.URL.new svcURL transfer = javaURL.openStream() // read from stream transfer.close()