如何连接servlet

时间:2011-02-07 12:27:30

标签: java android

我正在做客户端服务器进程。我不知道如何连接Servlet。在servlet中,我有从Oracle收集数据的JDBC。我想连接servlet并显示android中oracle数据库的所有细节。

2 个答案:

答案 0 :(得分:0)

Android提供HttpClient API来触发和处理HTTP请求。 several snippets上有androidsnippets.org。以下是触发HTTP GET request

的示例
public static InputStream getInputStreamFromUrl(String url) {  
  InputStream content = null;  
  try {  
    HttpClient httpclient = new DefaultHttpClient();  
    HttpResponse response = httpclient.execute(new HttpGet(url));  
    content = response.getEntity().getContent();  
  } catch (Exception e) {  
    Log.("[GET REQUEST]", "Network exception", e);  
  }  
  return content;  
}   

答案 1 :(得分:0)

我确实自定义了此代码并将其用作通用Web服务调用者类。

您可以使用此自定义版本的WebService类 - > http://dl.dropbox.com/u/13849473/WebService.java

P.S。原始来源是; http://www.josecgomez.com/2010/04/30/android-accessing-restfull-web-services-using-json/