您好,欢迎来到[编程问答]网站首页   源码下载   电子书籍   软件下载   专题
当前位置:首页 >> 编程问答 >> Java >> Axis2倒出arr包出错,求助

Axis2倒出arr包出错,求助

来源:网络整理     时间:2016/8/13 19:06:18     关键词:

关于网友提出的“ Axis2倒出arr包出错,求助”问题疑问,本网通过在网上对“ Axis2倒出arr包出错,求助”有关的相关答案进行了整理,供用户进行参考,详细问题解答如下:

问题: Axis2倒出arr包出错,求助
描述:

我下载了2个AXIS2的插件方法哦MYECLIPSE下的PLUG-IN下。程序
package com.alex.account;
public class AccountOper {
private static int[] fund={1000,588,600,412};
public static int accountID=0;
public boolean setAccountID(int id){
if(id<0||id>fund.length){
return false;
}
this.accountID=id;
return true;
}
//检查帐号上的存款
public boolean checkInput(int money){
if(money>fund[accountID]){ 
return false;
}else{
return true;
}
}
//存款业务
public int deposit(int money){
fund[accountID]=fund[accountID]+money;
return fund[accountID];
}
//取款业务
public int withdraw(int money){
if(checkInput(money)){
fund[accountID]=fund[accountID]-money;
}
return fund[accountID];
}
public int getAccount(){
return fund[accountID];
}
}
**************************************************
services.xml内容如下

com.alex.account.AccountOper

 


 


 


 


 

 
我倒出AccountServices.arr 时报错:Filesets
汗,查了半天网站 没查到,求各位大侠帮忙!!!!


解决方案1:

应该是Eclipse的版本和AXIS2插件的版本不对。


以上介绍了“ Axis2倒出arr包出错,求助”的问题解答,希望对有需要的网友有所帮助。
本文网址链接:http://www.codes51.com/itwd/3259669.html

相关图片

相关文章