1

BlackBerry Eclipse IDE の印刷可能なステートメントはどこにありますか。私が見るコンソールは、私が印刷した文字列を私に与えません

System.out.println("User1 "+Username);

それはただ示しています:

Packaging project HelloWorld
C:\Users\Ravi\Desktop\Eclipse\plugins\net.rim.ejde.componentpack7.1.0_7.1.0.10\components\bin\rapc.exe -convertpng -quiet codename=deliverables\Standard\7.1.0\HelloWorld -sourceroot=C:\Users\Ravi\workspace\HelloWorld\src;C:\Users\Ravi\workspace\HelloWorld\res -import=C:\Users\Ravi\Desktop\Eclipse\plugins\net.rim.ejde.componentpack7.1.0_7.1.0.10\components\lib\net_rim_api.jar deliverables\Standard\7.1.0\HelloWorld.rapc C:\Users\Ravi\workspace\HelloWorld\bin
Packaging project HelloWorld succeeded (took 1.63 seconds) 
4

1 に答える 1

2

次のような印刷ステートメントを実行したい場合

System.out.println("Test")

アプリケーションのステータスを追跡するには、アプリケーションをデバッグして print ステートメントを取得する必要があります。アプリケーションを正常に実行した場合、ステートメントは出力されません。

アプリケーションを右クリックし、 Debug as yourapplicationをクリックすると、print ステートメントを取得できます。

于 2012-10-15T04:56:30.630 に答える