JDB - Introduction, jdb demo.

Jdb demo


It defines the format of information and the requests that pass in between the debuggee process and the debugger front end.

All casino to play real money online




The primary purpose of having a JDWP is to allow the debuggee and the debugger to communicate when they run under separate vms or in separate platforms. The java debugger (JDB) is a tool for java classes to debug a program in command line. It implements the java platform debugger architecture. It helps in detecting and fixing bugs in a java program using java debug interface (JDI).


JDB - introduction


Debugging is a technical procedure to find and remove bugs or defects in a program and get expected results. Debugging includes testing and monitoring. It is very complex when the subunits of a program are tightly coupled. We can debug a program using the debugger tools that follow the prescribed apis. A debugger allows you to step through every aspect of a code, inspect all the elements, and remove errors, if any.


Debugging techniques


There are different kinds of techniques to debug a java program. The old method of debugging is by using print statements at the end of every segment which will print the trace statements on the console. Take a look at the following code.


Here, we have a program that adds two numbers and prints the output. Notice that at each step, we have introduced a print statement that prints the state of the program on the console. This is the traditional approach to debug a program.


In addition, we have advanced concepts that can be used to debug a program such as:



  • Stepping

  • Breakpoints, and

  • Exceptions or watchpoints.



Types of debugging


We can debug a program using various methods:



  • Using java bytecode (compiled version of java code)

  • Using comments inside the programs

  • Attaching class to a running program

  • Remote debugging

  • Debugging on demand

  • Optimized code debugging



Java debuggers


Here are some examples of java debuggers that are available in the market:



  • Ides such as eclipse, netbeans, etc. Contain their own debuggers (visual cafe, borland, jbuilder)

  • Standalone debugger guis (such as jikes, java platform debugger, and jprobe)

  • Command-line debugger (sun’s JDB)

  • Notepad or VI driven (stack trace)



This tutorial covers how to use the command-line debugger, jdb.


The java debugger (JDB) is a tool for java classes to debug a program in command line. It implements the java platform debugger architecture. It helps in detecting and fixing bugs in a java program using java debug interface (JDI).


JDB in JDK


The following architecture defines the role of JDB in JDK. It contains mainly three units:



  • Java virtual machine tool interface (JVM TI)

  • Java debug wiring pool (JDWP)

  • Java debugger interface (JDI)


JDB - Introduction, jdb demo.


JVM TI


It is a native programming interface implemented by VM. It provides ways to inspect and debug the state of the application running on the VM. It allows an implementer (VM implementer) that can be enclosed easily into the debugging architecture. It also uses a third-party channel called JDWP for communication.


It defines the format of information and the requests that pass in between the debuggee process and the debugger front end. The primary purpose of having a JDWP is to allow the debuggee and the debugger to communicate when they run under separate vms or in separate platforms.


It is a high-level java interface implemented as front end. It defines the variable information at user code level. It is recommended to use a JDI layer for all debugger development. It uses JDWP for communication with the debuggee JVM.


JDB - quick guide


Debugging is a technical procedure to find and remove bugs or defects in a program and get expected results. Debugging includes testing and monitoring. It is very complex when the subunits of a program are tightly coupled. We can debug a program using the debugger tools that follow the prescribed apis. A debugger allows you to step through every aspect of a code, inspect all the elements, and remove errors, if any.


Debugging techniques


There are different kinds of techniques to debug a java program. The old method of debugging is by using print statements at the end of every segment which will print the trace statements on the console. Take a look at the following code.


Here, we have a program that adds two numbers and prints the output. Notice that at each step, we have introduced a print statement that prints the state of the program on the console. This is the traditional approach to debug a program.


In addition, we have advanced concepts that can be used to debug a program such as:



  • Stepping

  • Breakpoints, and

  • Exceptions or watchpoints.



Types of debugging


We can debug a program using various methods:



  • Using java bytecode (compiled version of java code)

  • Using comments inside the programs

  • Attaching class to a running program

  • Remote debugging

  • Debugging on demand

  • Optimized code debugging



Java debuggers


Here are some examples of java debuggers that are available in the market:



  • Ides such as eclipse, netbeans, etc. Contain their own debuggers (visual cafe, borland, jbuilder)

  • Standalone debugger guis (such as jikes, java platform debugger, and jprobe)

  • Command-line debugger (sun’s JDB)

  • Notepad or VI driven (stack trace)



This tutorial covers how to use the command-line debugger, jdb.


The java debugger (JDB) is a tool for java classes to debug a program in command line. It implements the java platform debugger architecture. It helps in detecting and fixing bugs in a java program using java debug interface (JDI).


JDB in JDK


The following architecture defines the role of JDB in JDK. It contains mainly three units:



  • Java virtual machine tool interface (JVM TI)

  • Java debug wiring pool (JDWP)

  • Java debugger interface (JDI)


JDB - Introduction, jdb demo.


JVM TI


It is a native programming interface implemented by VM. It provides ways to inspect and debug the state of the application running on the VM. It allows an implementer (VM implementer) that can be enclosed easily into the debugging architecture. It also uses a third-party channel called JDWP for communication.


It defines the format of information and the requests that pass in between the debuggee process and the debugger front end. The primary purpose of having a JDWP is to allow the debuggee and the debugger to communicate when they run under separate vms or in separate platforms.


It is a high-level java interface implemented as front end. It defines the variable information at user code level. It is recommended to use a JDI layer for all debugger development. It uses JDWP for communication with the debuggee JVM.


JDB - installation


This chapter explains how to install JDB on windows and linux based systems. JDB is a part of JDK. Therefore, JDK installation is enough for using JDB in command prompt.


System requirements


Here are the system requirements for installing JDB:


JDK java SE 2 JDK 1.5 or above
memory 1 GB RAM (recommended)
disk space no minimum requirement
operating system version windows XP or above, linux


Follow the simple steps given below to install JDB on your system.


Step 1: verifying java installation


First of all, you need to have java software development kit (SDK) installed on your system. To verify this, execute any of the two commands depending on the platform you are working on.


If the java installation has been done properly, then it displays the current version and specifications of java installation. A sample output is given in the following table.


Open command console and type:


Java (TM) SE run time environment (build 1.7.0_60-b19)


Java hotspot (TM) 64-bit server VM (build 24.60-b09,mixed mode)


Open command terminal and type:


Open JDK runtime environment (rhel-2.3.10.4.El6_4-x86_64)


Open JDK 64-bit server VM (build 23.7-b01, mixed mode)


We assume the readers of this tutorial have java SDK version 1.7.0_60 installed on their system. In case you do not have java SDK, download its current version from the link http://www.Oracle.Com/technetwork/java/javase/downloads/index.Html and install it.


Step 2: setting up java environment


Set the environment variable JAVA_HOME to point to the base directory location where java is installed on your machine. For example,


Platform description
windows set JAVA_HOME to C:\programfiles\java\jdk1.7.0_60
linux export JAVA_HOME=/usr/local/java


Append the full path of java compiler location to the system path.


Platform description
windows append the string "C:\program files\java\jdk1.7.0_60\bin" at the end of the system variable PATH.
Linux export PATH=$PATH:$JAVA_HOME/bin/


Execute the command java -version from the command prompt as explained above.


Step 3: verifying JDB installation


Verify the JDB version as follows:


Open command console and type:


Open command terminal and type:


JDB - syntax


This chapter explains the syntax of JDB command. The syntax contains four sections listed as follows:



  • JDB

  • Option

  • Class

  • Arguments



Syntax


The syntax of JDB is as follows.


It calls jdb.Exe from the java development kit.


Options


These include the command line options used to debug a java program in an efficient way. The JDB launcher accepts all the options (such as -D, -classpath, and -X) and some additional advanced options such as (-attach, -listen, -launch, etc.).


Class


It is the class name on which you want to perform debugging operations.


Arguments


These are the input values given to a program at runtime. For example, arg[0], arg[1] to the main() method.


In the above four segments, options is the most important one.


JDB - options


This chapter describes the important options available in JDB that are submitted as arguments with the jdb command.


Options


The following table contains a list of options accepted by JDB:


Name description
-help displays the help message and lists the related options.
-sourcepath uses the given path for source files if path is not specified, then it takes the default path “.”, i.E., the current directory.
-attach attaches the debugger to the running VM by specifying the running VM address.
-listen waits for the running VM to connect using standard connector.
-listenany waits for the running VM to connect using any address.
-launch launches the debugged application immediately up on startup job.
-listconnectors lists the connectors available in this VM.
-connect connects to the target VM using named connector with listed argument values.
-dbgtrace prints information for debugging jdb.
-tclient runs the application in java hotspot VM (client).
-tserver runs the application in java hotspot VM (server).
-joption passes the option to the java virtual machine used to run JDB.


Using options with commands


The following commands show how to use some of the above options:


The following command gets -help on using JDB.


-attach


The following command attaches the debugger to a specified VM (port number:1099).


-listen


The following command makes the JDB process running on the current VM wait using standard connector (VM in 8008).


-listenany


The following command makes the JDB process running on the current VM wait using any connector (VM in currently running port).


-tclient


The following command executes the application in java hotspot(™) VM(client).


-tserver


The following command executes the application in java hotspot(™) VM(server).


JDB - session


This chapter describes how to start a JDB session in different ways. JDB launch is the frequently used technique to start a JDB session.


There are two different ways to start a JDB session:



  • Starting JDB session by adding class (main class name) to it.

  • Adding JDB to running JVM to start session.



Start a session by adding class


The following command starts a JDB session:


Syntax


Example


Let us assume we have a class named testclass. The following command starts a JDB session from the testclass.


If you follow this command, it starts a new java VM with any specified parameters. Thereafter it loads the class and stops it before executing the first statement of the class.


Start a session by adding JDB to a running JVM


Given below is the syntax and example to start a JDB session by adding the JDB to a running JVM.


Syntax


The following syntax is for JDB session:


Example


Let us assume the main class name is testclass and JVM allows the JDB to connect it later. The following is the command to add JDB to JVM:


Now you can attach the JDB to the JVM with the following command:


Note: here, the testclass is not added to the JDB command, because JDB is connected to the running VM instead of launching a new one.


JDB - basic commands


This chapter takes you through the basic commands of JDB. After launching a session, these commands are used for debugging a program.


The following is the list of commands used for debugging.


Name description
help or ? The most important JDB command; it displays a list of recognized commands with a brief description.
Run after starting JDB and setting the necessary breakpoints, you can use this command to start execution and debug an application.
Cont continues execution of the debugged application after a breakpoint, exception, or step.
Print displays java objects and primitive values.
Dump for primitive values, this command is identical to print. For objects, it prints the current value of each field defined in the object. Static and instance fields are included.
Threads lists the threads that are currently running.
Thread selects a thread to be the current thread.
Where dumps the stack of the current thread.


Example


Let us assume we have a sample class called add for the following examples:


Add.Java


Compile this class add.Java using the following command:


This command executes the main class file, which is added to JDB for debugging. Execute the following commands to run the add class.


On executing these commands, you get to see the following output:


JDB - Introduction, jdb demo.


JDB - breakpoints


This chapter explains the concept of breakpoints and how to set breakpoints in a program. A breakpoint introduces an explicit stop or pause in the execution of a program at a particular line of code while debugging. It is useful to acquire knowledge about variables in the program in its execution.


Syntax


The following command sets up a breakpoint at a particular line number:


The following command sets up a breakpoint on a particular method or on a particular variable:


Example


The following example shows how to set up a breakpoint in a class.


Save the above file as add.Java. Compile this file using the following command:


Debugging


Let us take an example for debugging. Here, we start the debugging process by setting up a breakpoint on main(). Given below are the steps to be followed in the debugging process:


Step 1: start a JDB session


The following command starts a JDB session on the add class for debugging:


Step 2: set a breakpoint


The following command sets up a breakpoint on the main() method of add class.


If the breakpoint is set successfully, you get to see the following output:


Step 3: start debugging


The following command starts execution of the class add:


If you run this command, you get to see the following output. In this output, you find that the execution stops at the breakpoint position, that is at the main() function.


JDB - Introduction, jdb demo.


The execution stops at the first line of the main method, that is at "int a=5, b=6;" or line no: 11 in the code. You can observe this information in the output.


Step 4: continue execution


The following command continues the program execution:


It gives you the remaining execution part and output as follows:


JDB - stepping


This chapter explains how to use the concept of stepping in debugging a program. Stepping is the debugger feature that lets you execute the code by stepping through line by line. Using this, you can examine each line of the code to ensure they are behaving as intended.


The following commands are used in the stepping process:



  • Step: steps to the next line of execution

  • List: examines where you are in the code

  • Cont: continues the remaining execution



Example


The following example uses the add class that we have used in the previous chapter:


Save the above file as add.Java. Compile this file using the following command:


Let us assume that the breakpoint is set on the main() method of the add class. The following steps show how to apply stepping in the add class.


Step 1: execute the job


The following command starts executing the class named add.


If you execute this command, you get to see the following output. In this output, you can find that the execution stops at the breakpoint position, i.E., at the main() method.


JDB - Introduction, jdb demo.


The execution stops at the first line of the main method, that is at "int a=5, b=6;" or line no: 11 in the code. You can observe this information in the output.


Step 2: step through the code


The following command steps the execution to the next line.


Now the execution steps to line no: 12. You get to see the following output.


JDB - Introduction, jdb demo.


Step 3: list the code


The following command lists the code:


You get the following output. List command is used to let you know the line in the code up to which the program control has reached. Notice the arrow mark => in the following screenshot that shows the current position of the program control.


JDB - Introduction, jdb demo.


Step 4: continue execution


The following command continues to execute the code:


This command continues executing the remaining lines of the code. The output is as shown below:


Generally, there are three types of stepping:



  • Step into

  • Step over

  • Step out



Step into


Using this command, you can step to the next line of the code. If the next line of the code is a function call, then it enters the function by driving the control at the top line of the function.


In the following code, the arrow mark defines the controller in the code.


If you use the step into command, the controller moves to the next line, i.E., "int c = ob.Addition(a,b);". At this line, there is a function call addition(int, int) hence the controller moves to the topmost line of the addition function with the arrow mark as shown below:


Step over


Step over also executes the next line. But if the next line is a function call, it executes that function in the background and returns the result.


Let us take an example. In the following code, the arrow mark defines the control in the code.


If you use the step over command, the control moves to the next line, i.E., "int c = ob.Addition(a,b);". In this line, there is a function call addition(int, int) hence the function execution is done in the background and the result is returned to the current line with the arrow mark as shown below:


Step out


Step out executes the next line. If the next line is a function call, it skips that and the function execution continues with the remaining lines of the code.


Let us take an example. In the following code, the arrow mark defines the controller in the code.


If you use the step out command, the controller moves to the next line, i.E., "int c = ob.Addition(a,b);". In this line, there is a function call addition(int, int) hence the function execution is skipped and the remaining execution continues with the arrow mark as shown below:


JDB - exception


This chapter explains how to handle the exception class using JDB. Generally, whenever a program raises an exception without a catch statement, then the VM prints the exception line, the cause of the exception, and exits. If the exception has been raised with a catch statement, then the exception is handled by the catch statement. Here, the VM prints the output with the cause of exception.


When the class that raises the exception is running under JDB, it also throws the uncaught exception. That exception can be handled using the catch command.


Example


Let us take an example of the class jdbexception:


Save the above file with the name jdbexception.Java. Compile this file using the following command:


Follow the steps given below to handle the exception.


Step 1: run the class


The following command executes the class named jdbexception as follows:


This jdbexception class contains an exception, hence you get to see the following output:


JDB - Introduction, jdb demo.


Step 2: catch the exception


The following command catches the exception:


It will give you the following output:


Step 3: continue execution


The following command continues the execution. Now the catch handles the arithmetic exception as follows:


JDB - Introduction, jdb demo.


JDB - in eclipse


This chapter explains how to use JDB in eclipse. Before proceeding further, you need to install eclipse indigo. Follow the steps given below to install eclipse indigo on your system.


Step 1: download and install eclipse


Step 2: create a new project and a new class



  • Create a new java project by following the options file-> new -> java project.

  • Name it as “sampledebug”.

  • Create a new class by right clicking on the samplebebug project.

  • Select options ->new -> class

  • Name it as “add.Java”


Add.Java


Step 3: open the debug perspective


Follow the instructions given below to open the debug perspective.


On the eclipse IDE, go to window -> open perspective -> debug. Now you get the debug perspective for the program add.Java. You get to see the following window.


JDB - Introduction, jdb demo.


Sections in debug perspective


The sections in the debug perspective are as follows:


Coding section


Java code is displayed in this section. It is the code you want to debug, that is, add.Java. Here we can add a breakpoint on a line by double clicking in front of the line. You find the blue bubble with an arrow symbol to point out the breakpoint of that line. See the following screenshot; you can find the selected area with a red circle pointed as “1”.



  1. Double click here. You can set the breakpoint for this line.


JDB - Introduction, jdb demo.


Breakpoint section


This section defines the list of breakpoints that are set to the program code. Here we can add, delete, find, and manage the breakpoints. The following screenshot shows the breakpoint section.


JDB - Introduction, jdb demo.


Observe the following options in the given screenshot:


Using the check box in the left, we can select or deselect a breakpoint. Here, we use one breakpoint, i.E., add class-main() method.


The single cross icon “X” is used to delete the selected breakpoint.


The double cross icon “XX” is used to delete all the breakpoints in your code.


The arrow pointer is used to point to the code where the selected breakpoint is applied.


The remaining functionalities in the breakpoint section are as follows:


Hitcount : it shows how many times the control hits this breakpoint. It is used for recursive logic.


Suspend thread : we can suspend the current thread by selecting it.


Suspend VM : we can suspend the VM by selecting it.


Debug section


This section is used for the process of debugging. It contains options that are used in debugging.


Start debugging : follow the instructions given below to start debugging.


Right click on the code -> click debug as -> click 1 java application.


The process of debugging starts as shown in the following screenshot. It contains some selected options, highlighted using numeric digits.


We apply a breakpoint on the add class main() method. When we start debugging, the controller gets stuck at the first line of the main() method.


It is used to resume the debugging process and skip the current breakpoint. It works similar to the cont command in the JDB command line.


It is used to stop the debugging process.


It works similar to the step in process in the JDB command line. It is used for moving the control to the next line, i.E., point “1” moves to the next line.


It works similar to the step over process in the JDB command line.


It is used to see on which line the breakpoint is applied.




JDB - Introduction, jdb demo.


Follow the given steps and sections to debug your code in eclipse IDE. By default, every IDE contains this debugging process.


Jdb demo



Continue your winning streak with SPINDRIFT. Let’s meet again!



Enjoy POP POP FRUITY in the summer heat!



Experience the passion of waves, create new romantic summer vibes!



Come and PK dragon king and tiger king.



Are you still virtual mining? Come join MINER BABE to experience mining fun!









SPINDRIFT sequel-SPINDRIFT Ⅱ, continue your winning streak!



Passionate summer with fantastic waves! Catching the exciting waves in the summer hand in hand!



Enjoy POP POP FRUITY in the summer heat!



Dragon king and tiger king PK with all their might. DOUBLE WILDS-double strike. When obtaining three or more “combat badges,” players will be awarded with a free spin bonus.



Are you still virtual mining? Come join MINER BABE to experience mining fun! Mine the ore to multiply your rewards! Respin to mine your way to victory!



Saving money requires determination; seize the opportunity to get rich now! MONEYBAGS MAN will make you wealthy overnight!



Treasures springing up, ready to party all night long! JDB has launched an electro-music slot game “GOLDEN DISCO” . Enjoy the fabulous disco casino!



Pass on the NIUBI spirit and inherit the NIUBI soul! New edition of SUPER NIUBI DELUXE is here!



King of the jungle funkily attacks! JDB has launched an easy and simple single-line slot game of FUNKY KING KONG! Easily becoming wealthy by winning the 800X grand prize at home!



JDB's first elimination matching game of gambling! Come to check it out!



Chinese famous drama WINNING MASK Ⅰhas astonishingly been released! Haven't tried it yet?



WINNING MASK Ⅱ, combining the essence of traditional and classic culture elements with the typical chinese drama, face changing. Have you tried it yet?



“OPEN SESAME” , this mysterious code can open the gate leading to a treasure hiding cave!



“hidden in the deepest part of the cave, there lies an undiscovered mysterious treasure chest! ”



Golden rooster comes to announce great news with love.



“with mjolnir in hand, you will feel mighty!” hurry up and enjoy this thrilling game, MJOLNIR, with unstoppable matching gifts and hammer out the 2000X grand prize with all your strength!



“with a TREASURE BOWL at hand, you may win 1800 times of wealth.” the two stages of free spins game satisfy you to enjoy the fun of having endless wealth! Join the treasure bowl and it won’t be a dream to win abundant money every day.



“great signs that lead to good luck, great fortune and plenty of wealth all around for the future.” legends has it that pixius is a sign of wealth that will allow you to acquire every type of wealth. Playing FORTUNE TREASURE will bring you favorable fortunes and generate plenty of wealth!



Mythical legendary treasures lie underneath the ancient and mysterious egyptian pyramids! The royal treasures filled with fantasies that are worth fortunes awaiting to be discovered!



The journey for treasures is about to begin as I will become the king of pirates!



“long time ago, it is said that when an ancient animal arrives, more and more wealth will come to the. ”



“red dragon! White dragon! East wind. ” would you like to play a round of MAHJONG in your leisure time?



GO LAI FU has simple gameplay, an entertaining rhythm, and even more chances to bring wealth on its wheel. 1000X prizes are waiting for you to take them home!



Want to make money? Want to be rich? Want to get rich now? Get on your horse to get rich now!



In a mysterious oriental nation, legend says that there is a great treasure guarded by five dragons. Choose your guardian dragon and pray that he will magnanimously grant you his treasure!



When the most talented man of southern china, tang bohu, meets the talented lady, qiouxiang, what kind of sparkles will they make?



Tang bohu wearing his groom's outfit, and qiu xiang wearing her bridal gown, have become special wild re-spin symbols in this free game. Spin and spin again! Hitting the jackpot is no longer just a dream!



Happy new year! The god of fortune brings a big red envelope! Come to join NEW YEAR! We're giving out red envelopes by the bundle, so you can easily win the 1000X jackpot!



As the moon begins to shine, the golden dragon holds a pearl. You only need three pearls to play the game for free and experience its excitement, with a wide range of non-stop prizes for you to open and open again!



“A diamond can be forever, three diamonds can win 10 million!”



The dragon is in the sky, bringing prizes with every round, fortune with every pull, taking your wealth to greater heights!



FORMOSA BEAR, the white pattern with V-shaped on the bears' chest signalizes the great omen of victory.




So, let's see, what we have: JDB - introduction - debugging is a technical procedure to find and remove bugs or defects in a program and get expected results. Debugging includes testing and monitoring. It is ve at jdb demo

Comments

Popular posts from this blog