Sto provando a scrivere un programma su un .py estendere un'interfaccia java, proprio come un example on IBM developerworks.Jython AttributeError: read-only attr
Ma ho avuto un problema simile:
AttributeError: read-only attr: cardID
Ma la cosa strana è che se cambio titolo il cardID per CARDNUM, funziona. Ecco il mio codice:
CardInfo.py
from com.jyt import CardInfo
class CardInfo(CardInfo):
def __init__(self):
self.cardName = "Dark Magician"
self.cardID = "888"
def getName(self):
return self.cardName
def getCardID(self):
return self.cardID
def setID(self,newID):
self.cardID = newID
e l'interfaccia Java:
public interface CardInfo {
public String getCardID();
public String getName();
public void setID();
}
e il file java
Object javaObject;
PythonInterpreter interpreter = new PythonInterpreter();
// PySystemState sys = Py.getSystemState();
interpreter.execfile("./res/CardInfo.py");
interpreter.exec("cardInfo=CardInfo()");
PyObject pyObject = interpreter.get("cardInfo");
pyObject.invoke("setID",new PyString("12345"));
try{
javaObject = pyObject.__tojava__(CardInfo.class);
CardInfo cardInfo = (CardInfo)javaObject;
System.out.println(cardInfo.getCardID());
System.out.println(cardInfo.getName());
}catch(Exception e){
e.printStackTrace();
}
qualcuno sa come risolvere questo?
sembra che cardID sia un KeyWord o qualcosa, ho provato CardNID, CID, ecc. Funziona – user1746290