Home | Ajax | BioInformatics | Dojo | EAI | EJB | Hibernate | J2ME | Java | Java Glossary | Java Servlets | JavaScript | Jboss | JDBC | JDO | Jmeter | JSF | JSP | JUnit | Maven | MySQL | Spring Framework | SQL | Struts | Technology | WAP | Web Services | XML


 
  
 
Programming Tutorials: Ajax | Articles | JSP | Bioinformatics | Database | Free Books | Hibernate | J2EE | J2ME | Java | JavaScript | JDBC | JMS | Linux | MS Technology | PHP | RMI | Web-Services | Servlets | Struts | UML
 

 
Facing Programming Problem?
Ask Questions?, Browse Latest Questions, Question-Answer Guidelines
Java
  JDO Tutorials
  EAI Articles
  Struts Tutorials
  Java Tutorials
  Java Certification
  Java Applet
Questions
Comments

Multiple Value initialization and retrieval by put and get method

                         

In this example you are going to find out the flow of using put and get method of the preferences. After reading, coding, and running you are able to use the get and put method. Here we are using some extra package method like Arrays, Iterator here you can see that how firstly in program we putting the value of the preferences like int type ,Boolean type, and simple key value after that we are just using the get method we access all the stored value of the preferences. As we recently completed all of the put and get type, some of them are given here for knowing them more clearly.

Here is the code of the Program :

package roseindia;
import java.util.Arrays;
import java.util.Iterator;
import java.util.prefs.Preferences;

public class Basic {
  public static void main(String[] args) throws Exception {
    Basic basic = new Basic();
  }

  public Basic() throws Exception{
    Preferences prefs = Preferences.userNodeForPackage(this.getClass());
    prefs.put("city1""delhi");
    prefs.putInt("intValue"2);
    prefs.putBoolean("booleanValue"true);
    int usageCount = prefs.getInt("intValue", 0);
    usageCount++;
    prefs.putInt("UsageCount", usageCount);
    Iterator it = Arrays.asList(prefs.keys()).iterator();
    while (it.hasNext()) {
      String key = it.next().toString();
      System.out.println(key + ": " + prefs.get(key, null));
    }
  }
}

After thoroughly knowing the code you should save the file by "Basic.java" file name and when after compiling the code you run your program you will get the output given below .

Here is the output of the Program :

C:\roseindia>javac Basic.java
C:\roseindia>cd..
C:\>java roseindia.Basic
city1: delhi
intValue: 2
booleanValue: true
UsageCount: 3
C:\>_

In the above Program the City1 and Delhi is putting as the default value and the all of the rest value is putting as the integer , Boolean value and after using the put function we are also use the get function via which we are just take from the contains preferences value for the output.

Download this example.

                         

Leave your comment:

Name:

Email:

URL:

Title:

Comments:


Enter Code:

Audio Version
Reload Image
 

Note: Emails will not be visible or used in any way, and are not required. Please keep comments relevant. Any content deemed inappropriate or offensive may be edited and/or deleted.

No HTML code is allowed. Line breaks will be converted automatically. URLs will be auto-linked. Please use BBCode to format your text.

Add This Tutorial To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Latest Searches:
passing values from js
Visual Basic Networkin
design patterns
File Separator
reset in struts
java registration form
fileupload servlet fil
drill down in jfree ch
dynamic table
popup window
FileStream
JSP scriptlets
Connection Pooling cod
standard deviation arr
xml database
types of table mainten
scroll
netbeans jsp jdbc
Javascript Menus Image
Java listener
change color in JTabl
standered jar to downl
java.lang.ArrayIndexOu
AND Operator
Photoshop Drawing Cand
insert data to databas
JAVA RMI
create file folder
java converstion
slection model in jdbc
type Conversion in JSF
max chars 500 chars i
compare words from a t
java applets
send redirect
what is static inner c
how to get the checkbo
Heap Sort in C
Tracing in a multithre
MemoryImageSource(widt
retrieve data to text
source code for chat p
phone number validatio
display image from dat
Convert Integer to Flo
struts2 example
Combattons la programm
jspcode
Apache MyFaces
program with an except
array element in php
weblogic server
JComboBox
a sample example forh
radio button using tld
struts2 enum
remove rectangle
two dimensional array
manage
filereader
Session Tracking
unicode
ASP EXAMPLE' and 1=1 a
header footer menu bod
portlet spring
java system package
create txt file in spe
populate dropdown in j
Replace
java excel
Player Class in the Ja
printing jdbc batch qu
add one tree object co
rmi jdbc connection
myfaces tomahawk
how to pass same varia
Passing Parameters in
covert uppercase to lo
Java Swing Center a Di
java script to get par
Java String toLowerCase Example
Java String toCharArray Example
Java String substring Example
Java String indexOf Example
Java String startsWith Example
Java String hashCode Example
Java String matches Example
Java String length Example
Java String lastIndexOf Example
Java String isEmpty Example
Java String equalsIgnoreCase Example
Java String equals Example
Java String endsWith Example
Java String copyValueOf Example
Java String contentEquals Example
  EAI Articles
  Java Certification
Tell A Friend
Your Friend Name
Search Tutorials

 

 
 
Browse all Java Tutorials
Java JSP Struts Servlets Hibernate XML
Ajax JDBC EJB MySQL JavaScript JSF
Maven2 Tutorial JEE5 Tutorial Java Threading Tutorial Photoshop Tutorials Linux Technology
Technology Revolutions Eclipse Spring Tutorial Bioinformatics Tutorials Tools SQL
 

Home | JSP | EJB | JDBC | Java Servlets | WAP  | Free JSP Hosting  | Search Engine | News Archive | Jboss 3.0 tutorial | Free Linux CD's | Forum | Blogs

About Us | Advertising On RoseIndia.net  | Site Map

India News

Indian Software Development Company | iPhone Development Company in India | Java Training Delhi | Java Training at Noida |

Send your comments, Suggestions or Queries regarding this site at roseindia_net@yahoo.com.

Copyright © 2008. All rights reserved.