在HttpPost中httppost = new HttpPost(url); 如果我试图访问位于localhost:8080的Openbravo-erp中的模块,那么该网址应该是什么。
答案 0 :(得分:0)
HttpPost类有三个构造函数
HttpPost()
HttpPost(String uri)
HttpPost(URI uri)
对于第二个构造函数,您可以像下面一样传递。
HttpPost post = new HttpPost("http://localhost:8080/openbravo/ws/dal/Product");
希望这有帮助!