我在j2me中开发了一个应用程序,它正在成功执行。将来,如果我的陈述中有任何问题,我想调试我的应用程序。我知道,我可以使用System.out.println(),但我想记录一个语句,我怎么能在j2me中做到?如果可能,请提供示例代码?
答案 0 :(得分:2)
简单地
public static void logToConsole(String str) {
System.out.println(str);
System.out.println(str);
在您的实用程序类中声明它并使用它。
如果您想让屏幕记录器将消息放入其中并将其显示在画布上。
}
//Vector which will hold your logs
private static Vector logData = new Vector();
public static void logToScreen(String str) {
logData.add(str);
现在在画布中使用它。
logData.add(str);
}
public static Vector getLogData() {