0

在 HttpPost httppost=new HttpPost(url); 如果我尝试访问位于 localhost:8080 中的 Openbravo-erp 中的模块,那么 url 应该是什么。

4

1 回答 1

0

HttpPost 类具有三个构造函数

HttpPost() 
HttpPost(String uri) 
HttpPost(URI uri)

对于第二个构造函数,您可以像下面这样传递。

HttpPost post = new HttpPost("http://localhost:8080/openbravo/ws/dal/Product");

希望这可以帮助 !。

于 2013-06-21T07:45:29.597 回答