Serverless using Java
My colleague were just discussing about the new architecture serverless most of the time and out of curiosity I fiddle around with this term and… Read More »Serverless using Java
My colleague were just discussing about the new architecture serverless most of the time and out of curiosity I fiddle around with this term and… Read More »Serverless using Java
A new Java-based Twitter Application launched on Feb 14 on Facebook for all the public user for free. Any one can download the twitter application… Read More »New Twitter Application on Desktop
The JTable
is almost great component of Java Swing which is used to display records of any data.
Specially JTable
are used for displaying records which are retrived from the database like MySQL, ORACLE ,Excel and other…
Simply JTable has it’s default model for displaying the records in format.
In this blog we would just demonstrate a simple JTable
where all the data records are being assigned by developers.
Ok, here is a detail codes of Making simple JTable
:
This JFrame is a class which is located at the java package javax.swing JFrame helps to form applet , this class is one type of… Read More »JFrame
Many developers want their own Layout Manager with user-defined so JAVA has provided a separate method for the every container of JFrame Component and that method is setBounds(). This method helps the developers to position the container as per their need .
About SetBounds() method:
This method consists four parameter
1 2 3 |
Syntax: <strong> </strong><em><strong>xxx.setBounds(int x_axis, int y_axis, int width, int height);</strong> </em> |
We can arrange the containers with the help of this method easily.Read More »Trick of Positioning the Containers of JFrame