blank space in input field

blank space in input field

I retrieved the fields from my mysql table...If the field contains null value i want to display a blank space in input field(text box)..but i am displaying null how to overcome this..


u r help is highly appreciated.
View Answers

April 6, 2010 at 1:24 PM

Hi Friend,

In the following code, we have retrieved null value in third textbox.

import java.sql.*;
import java.awt.*;
import javax.swing.*;

class DisplayData{
JLabel lab1,lab2,lab3;
JTextField text1,text2,text3;

JPanel p;
JFrame f;
DisplayData(){
lab1=new JLabel("Name");
lab2=new JLabel("Address");
lab3=new JLabel("Contact No");
text1= new JTextField(20);
text2= new JTextField(20);
text3= new JTextField(20);
p=new JPanel(new GridLayout(3,2));
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/register";, "root", "root");
Statement stmt = con.createStatement();
ResultSet rs=stmt.executeQuery("Select name, address, contactNo from person where id='2'");
String name="",address="";
int contact=0;
while(rs.next()){
name=rs.getString("name");
address=rs.getString("address");
contact=rs.getInt("contactNo");
}
text1.setText(name);
text2.setText(address);
if(contact==0){
text3.setText(" ");
}
}
catch(Exception e){}

f=new JFrame();
p.add(lab1);
p.add(text1);
p.add(lab2);
p.add(text2);
p.add(lab3);
p.add(text3);
f.add(p);
f.pack();
f.setVisible(true);
}
public static void main(String[] args) {
DisplayData data=new DisplayData();
}
}

Thanks









Related Tutorials/Questions & Answers:
blank space in input field - Java Beginners
blank space in input field  I retrieved the fields from my mysql table...If the field contains null value i want to display a blank space in input field(text box)..but i am displaying null how to overcome this.. u r help
Validaton(Checking Blank space) - Spring
Validaton(Checking Blank space)  Hi i am using java springs .I am having problem in doing validation. I am just checking blank space. This is my controller. I named it salescontroller. package controller; import
Advertisements
jsf text field not blank
jsf text field not blank  text field not clear in jsf onclick of reset button in my application initial value not deleted   Hello Friend, Post your code. (adsbygoogle = window.adsbygoogle || []).push
MySQL Blank Field
MySQL Blank Field This example illustrates how to find Blank field by the MySQL Query. In the table 'example' two t_count fields are blank and we find both field which has some value by query 'select * from example where t_count
iPhone Input Field, iPhone Input Field Tutorial
iPhone Input Field Generally, input fields are used to take input from the users.  In iPhone application we can use Text Field to take the input. ... input field according to your requirement. Creating an Application.. 1
insertin form data into databse and blank all form field when click on submit button
insertin form data into databse and blank all form field when click on submit... database when click on submit button and blank all form field after inserting...;<td><input type="text" name="name"></td></tr> <tr>
UItextfield blank
UItextfield blank  Hi, How I can check if UITextfield is blank..., Following code can be used to validate the user input in iPhone and iPad applications... = [[UIAlertView alloc] initWithTitle:@"Field Error" message:@"Please enter
Can not input value into text field which use sx:datetimepicker
Can not input value into text field which use sx:datetimepicker  I am using lib: struts2-dojo-plugin-2.2.3.1.jar. My source is below: I input value from calendar, it runs normal. But i input value from keyboard by hands
Can not input value into text field which use sx:datetimepicker
Can not input value into text field which use sx:datetimepicker  I am..." cssStyle="font-size:13.5px" accesskey="true" />"); I input value from calendar, it runs normal. But i input value from keyboard by hands and then i move focus
Show text field & check input using jQuery
Show text field & check input using jQuery In this tutorial, we will discuss about how to display 'text field' by a button click & check... how to display 'text field' by a button click & check input using
How to collect Java input field value display into Jtable?
How to collect Java input field value display into Jtable?  <p>We would like to know how to collection input field data into Jtable with the following format. Please advise.</p> <ol> <li>text field
input
input  a java program that will exchange the last names of two students that were input by a user
PHP Prevent blank upload
PHP Prevent blank upload  In my small PHP application, i am posting... is that it also accepts blank data as well as duplicate value. Is there any way to check and prevent it from posting the blank value? Thanks
this is my file upload page, here i am not getting tags input field value to my servlet,please suggest a solution?
this is my file upload page, here i am not getting tags input field value to my... <input id="file' + counter + '" name = "file' + counter + '" type="file" /></td></tr>' + '<input id="Button' + counter
Struts2 blank application - Struts
Struts2 blank application  Hi I am new to struts2 and i am trying to run the strutsblank application by following the following Link; http://www.roseindia.net/struts/struts2/index.shtml As per the instructions given
How to design a blank CD, design a blank CD, blank CD
How to design a blank CD       This is a blank CD example, You will learn here how to make a blank CD by taking help of this example. New File: Take a new file with any
Running problem with NoughtsAndCrossesGame in blank
Running problem with NoughtsAndCrossesGame in blank  Hi i was having problem created NoughtsAndCrossesGame in end the it works but i runs the gui in blank. Its another way to solve it /* * To change this template, choose
Remove Extra Space At End
Remove Extra Space At End  Remove Extra Space At End
Text Field in HTML
Text Field in HTML       The Text Field in HTML are one line areas, which enable the user to enter input text. Understand with ExampleADS_TO_REPLACE_1 The Tutorial illustrates
time and space complexity
time and space complexity  sort the data structures according to efficient time and space utilisation
ModuleNotFoundError: No module named 'space'
ModuleNotFoundError: No module named 'space'  Hi, My Python program is throwing following error: ModuleNotFoundError: No module named 'space' How to remove the ModuleNotFoundError: No module named 'space'
input box
input box  give me the code of input box in core java
input box
input box  give me the code of input box in core java
Program to Ignore Space and Enter ?!
Program to Ignore Space and Enter ?!  Hi, dear friend i wont to write program to enter many statements, if i use Space and Enter in the Run Time must be delete the space and ignore the Enter ..for example if i entered
java.lang.OutOfMemoryError: Java heap space
" java.lang.OutOfMemoryError: Java heap space How to resolve this issue? Thanks   Hi... your program. Check the thread Java heap space and java.lang.OutOfMemoryError: Java heap space. Thanks
java.lang.OutOfMemoryError: Java heap space
java.lang.OutOfMemoryError: Java heap space error. This error is coming while... java.lang.OutOfMemoryError: Java heap space where there is no more space available... space using following parameters while starting your application: While running
python replace newline with space
python replace newline with space  Hi, I want to replace newline character \n With space in python. How to replace newline with space in python? Thanks   Hi, Its easy in python. You can use the replace method
python replace newline with space
python replace newline with space  Hi, I want to replace newline character \n With space in python. How to replace newline with space in python? Thanks   Hi, Its easy in python. You can use the replace method
xmlname space in java
xmlname space in java  hi i want to write code like , i used setAttribute method for this. but its showing ERROR: 'Namespace for prefix 'company' has not been declared.' javax.xml.transform.TransformerException
input output
Input And Output       Introduction The Java I/O means Java Input/Output and is a part... character input stream and buffering characters. It also reads
space around/between my images
space around/between my images  How do I eliminate the space around/between my images
how to space images in html code
how to space images in html code  how to space images in html code
Array and input
to input one of the above numbers then i want to print the array without the number user input. how will i do tht
Java heap space
Java heap space  I am using MyEclipse 8.6 for my web based project. The command may be... Ex: java -Xms32m -Xmx128m How can I increase java heap space??? and Where to use this command exactly?   Following are few
Input - Output String Functions
Input - Output String Functions      ... data from a user (text field, text area) since it is not secure to receive a string data and input them directly into your database. Some special characters
keyboard input
keyboard input  how do I use JOptionPane to accept keyboard input? I know how to import but not specific command on input line   import javax.swing.*; class JOPtionPaneExample { public static void main(String
remove space - Java Beginners
remove space  I want to remove all line in text file using java. i want all text in single line. example. Input file This is text. I want remove all line. Output file This is text
ModuleNotFoundError: No module named 'assoc_space'
ModuleNotFoundError: No module named 'assoc_space'  Hi, My Python... 'assoc_space' How to remove the ModuleNotFoundError: No module named 'assoc_space' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'coverage-space'
ModuleNotFoundError: No module named 'coverage-space'  Hi, My... named 'coverage-space' How to remove the ModuleNotFoundError: No module named 'coverage-space' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'py_space'
ModuleNotFoundError: No module named 'py_space'  Hi, My Python..._space' How to remove the ModuleNotFoundError: No module named 'py_space... to install padas library. You can install py_space python with following
ModuleNotFoundError: No module named 'python-space'
ModuleNotFoundError: No module named 'python-space'  Hi, My Python... 'python-space' How to remove the ModuleNotFoundError: No module named 'python-space' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'sample_space'
ModuleNotFoundError: No module named 'sample_space'  Hi, My Python... 'sample_space' How to remove the ModuleNotFoundError: No module named 'sample_space' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'space-aliens'
ModuleNotFoundError: No module named 'space-aliens'  Hi, My Python... 'space-aliens' How to remove the ModuleNotFoundError: No module named 'space-aliens' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'space-api'
ModuleNotFoundError: No module named 'space-api'  Hi, My Python... 'space-api' How to remove the ModuleNotFoundError: No module named 'space... have to install padas library. You can install space-api python with following
ModuleNotFoundError: No module named 'space-bandits'
ModuleNotFoundError: No module named 'space-bandits'  Hi, My... 'space-bandits' How to remove the ModuleNotFoundError: No module named 'space-bandits' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'space-command'
ModuleNotFoundError: No module named 'space-command'  Hi, My... 'space-command' How to remove the ModuleNotFoundError: No module named 'space-command' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'space-diff'
ModuleNotFoundError: No module named 'space-diff'  Hi, My Python... 'space-diff' How to remove the ModuleNotFoundError: No module named 'space-diff' error? Thanks   Hi, In your python environment you
ModuleNotFoundError: No module named 'space-tracer'
ModuleNotFoundError: No module named 'space-tracer'  Hi, My Python... 'space-tracer' How to remove the ModuleNotFoundError: No module named 'space-tracer' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'state-space'
ModuleNotFoundError: No module named 'state-space'  Hi, My Python... 'state-space' How to remove the ModuleNotFoundError: No module named 'state-space' error? Thanks   Hi, In your python environment
ModuleNotFoundError: No module named 'terminal-space'
ModuleNotFoundError: No module named 'terminal-space'  Hi, My... named 'terminal-space' How to remove the ModuleNotFoundError: No module named 'terminal-space' error? Thanks   Hi, In your python

Ads