我有一个关于将对象属性从一个类传递到另一个类的问题。我有两个类:AggiungiEs
这是一个jframe接口,我可以通过三个微调器选择值并将它们分配给变量,
String serie = String.valueOf(spinner.getValue());
String ripetizioni = String.valueOf(spinner_1.getValue());
String recupero = String.valueOf(spinner_2.getValue());
然后我想创建一个包含这些变量的对象,并将此对象传递给第二个类addEsercizioScheda
的方法。
GestoreEsercizi gE = new GestoreEsercizi();
EsercizioScheda esercizio = new EsercizioScheda(nomeEs, gruppoMuscolare,
allenamento, serie, ripetizioni, recupero);
gE.addEsercizioScheda(esercizio, idScheda);
问题是它们的值没有出现在第二类中:当我打印它们时它返回“null”...
public void addEsercizioScheda(EsercizioScheda esercizioScheda, String idScheda) {
[.......SOME STUFF TO WRITE IN A XML FILE]
Element IDEsercizio = ultimoElemento.getChild("ID");
IDEsercizio.setText(UUID.randomUUID().toString());
Element nodoEsercizi = new Element("Esercizi");
ultimoElemento.addContent(nodoEsercizi);
nodoEsercizi.addContent("\n"); // va a capo ad ogni cambio di tag
Element nodoEsercizioScheda = new Element("EsercizioScheda");
nodoEsercizi.addContent(nodoEsercizioScheda);
nodoEsercizioScheda.addContent("\n"); // va a capo ad ogni cambio di tag
Element nodoIDEsercizioScheda = new Element("ID").setText(UUID.randomUUID().toString());
nodoEsercizioScheda.addContent(nodoIDEsercizioScheda);
nodoEsercizioScheda.addContent("\n");
Element nodoIDAllenamento = new Element("IDAllenamento").setText("DA MODIFICARE");
nodoEsercizioScheda.addContent(nodoIDAllenamento);
nodoEsercizioScheda.addContent("\n"); // va a capo ad ogni cambio di tag
Element nodoSerie = new Element("Serie").setText(esercizioScheda.serie);
nodoEsercizioScheda.addContent(nodoSerie);
nodoEsercizioScheda.addContent("\n"); // va a capo ad ogni cambio di tag
Element nodoRipetizioni = new Element("Ripetizioni").setText(esercizioScheda.ripetizioni);
nodoEsercizioScheda.addContent(nodoRipetizioni);
nodoEsercizioScheda.addContent("\n"); // va a capo ad ogni cambio di tag
Element nodoRecupero = new Element("Recupero").setText(esercizioScheda.recupero);
nodoEsercizioScheda.addContent(nodoRecupero);
nodoEsercizioScheda.addContent("\n"); // va a capo ad ogni cambio di tag
System.out.println(esercizioScheda.serie);
[....]
当我打印esercizioScheda.serie
时,它会返回“null”...我该如何解决?
答案 0 :(得分:0)
我发现对象属性的方式没有问题。你可以调试并检查它为你的serie属性返回什么:
String serie = spinner.getValue().toString();