I’ve tested deployment to Android Market already as a test, seems like everything is hooked up fine – but now getting a little deeper into java and need to figure out how to use the Eclipse IDE.
-
I’m having exceptions, but where can see the exception message?.. it’s not showing up in my consoles , not even the java stack trace console while in debug mode?
URLConnection uconn = null;
try {
uconn = u.openConnection();
catch (IOException e) {
e.printStackTrace();
x = x + e.toString();
} -
Where does this output, not seeing it in any of the consoles. How can I output to console?
System.out.println(“—————–hello”);
-
I can open up the view variable windows, but see no variables there, how do I add them into that so I can see their values, are they only they only visible if I add a line breakpoint? btw, what’s the function key to step to next breakpoint?
visible at LogCat view, it is
available at DDMS perspective or you
can add it through menu Window ->
Show View -> Other.. -> Android
Log.i("some tag", "message");The log message is then visible at the LogCat view.