3.12. 配置 charset
				如果使用 POST 来发送数据,您可以使用 Exchange 属性配置 charset :
			
exchange.setProperty(Exchange.CHARSET_NAME, "iso-8859-1");
exchange.setProperty(Exchange.CHARSET_NAME, "iso-8859-1");3.12.1. 端点 URI 的 URI 参数
复制链接链接已复制到粘贴板!
					在本例中,我们拥有完整的 URI 端点,该端点只是您在 Web 浏览器中键入的内容。可以使用 和 字符作为分隔符来设置多个 URI 参数,就像在 Web 浏览器中一样。此处 Camel 没有技巧。
				
// we query for Camel at the Google page
template.sendBody("ahc:http://www.google.com/search?q=Camel", null);
// we query for Camel at the Google page
template.sendBody("ahc:http://www.google.com/search?q=Camel", null);