嗨,我在StackOverflow上看到了一个有这段代码的例子:
String encoding = Base64Encoder.encode ("test1:test1"); HttpPost httppost = new HttpPost("http://host:post/test/login"); httppost.setHeader("Authorization","Basic " + encoding); System.out.println("executing request " + httppost.getRequestLine()); HttpResponse response = httpclient.execute(httppost); HttpEntity entity = response.getEntity();
我有类似的任务.我尝试使用相同的代码,但我无法在任何地方找到Base64Encoder类.我使用httpclient-4.1.2.jar和httpcore-4.1.2.jar.有人可以帮我弄这个吗?
解决方法
我认为你需要让commons编解码器与HttpClient一起使用Base64编码.这是链接.
Commons codec link