我现在正在封装 RESTful API,目前除了上传外所有接口已经封装完毕,现在遇到的问题是,上传数据的时候遇到“ -5992,请求参数错误”,在网上找不到任何资料,上传数据格式也没有例子,寻求帮助!!!
只需按照如下所示:
public class Deletable implements Cloneable{
private String str;
public Deletable(){
}
public void setStr(String str){
this.str = str;
}
public void display(){
System.out.println("The String is "+str);
}
protected Object clone() throws CloneNotSupportedException {
return super.clone();
}
}
无论你想获得另一个对象,简单地执行克隆。例如:
Deletable del = new Deletable();
Deletable delTemp = (Deletable ) del.clone(); // this line will return you an independent
// object, the changes made to this object will
// not be reflected to other object
创建一个拷贝构造函数:
class DummyBean {
private String dummy;
public DummyBean(DummyBean another) {
this.dummy = another.dummy; // you can access
}
}
每个对象都有一个克隆方法可以用来复制对象,但最好不要使用它。