This is with playn. I use this, only to try how it works:
net().get("http://google.com", new Callback<String>()
{
@Override
public void onSuccess(String result) {
drawResult(result);
}
@Override
public void onFailure(Throwable cause) {
// TODO Auto-generated method stub
drawResult(cause.toString());
}
});
}
When i started this for Android or Java, onSuccess result is ok. When I started for html result is empty, where i wrong? Thanks and sorry for my bad English.