Exchange campbx = ExchangeFactory.INSTANCE.createExchange(CampBXExchange.class.getName());
campbx.getExchangeSpecification().setUserName("XChange");
campbx.getExchangeSpecification().setPassword("The Java API");
PollingAccountService accountService = campbx.getPollingAccountService();
AccountInfo accountInfo = accountService.getAccountInfo();
System.out.println("accountInfo = " + accountInfo);
String depositAddr = accountService.requestDepositAddress(Currencies.BTC);
System.out.println("depositAddr = " + depositAddr);
String txid = accountService.withdrawFunds("BTC", new BigDecimal("0.1"), "1FgpMU9CgQffjLK5YoR2yK5XGj5cq4iCBf");
System.out.println("See the withdrawal transaction: http://blockchain.info/tx-index/" + txid);
}