Welcome to Dream.In.Code
Getting Java Help is Easy!

Join 132,638 Java Programmers for FREE! Get instant access to thousands of Java experts, tutorials, code snippets, and more! There are 1,072 people online right now. Registration is fast and FREE... Join Now!




Simple Program

 
Reply to this topicStart new topic

Simple Program, Store Data

saito_dynasty
post 13 Oct, 2008 - 01:12 AM
Post #1


New D.I.C Head

*
Joined: 13 Oct, 2008
Posts: 1

How Can I Make Java Store Data..
Data Will Be Store As Long The Program Are Running...
It Also Can Be Display...
And Delete...

Software : JCreator LE4.50
User is offlineProfile CardPM

Go to the top of the page

bbq
post 13 Oct, 2008 - 01:28 AM
Post #2


D.I.C Head

Group Icon
Joined: 15 May, 2008
Posts: 185



Thanked 15 times

Dream Kudos: 50
My Contributions


QUOTE(saito_dynasty @ 13 Oct, 2008 - 02:12 AM) *

How Can I Make Java Store Data..
Data Will Be Store As Long The Program Are Running...
It Also Can Be Display...
And Delete...

Software : JCreator LE4.50


Rather broad question indeed, however i will touch on it

Say you want to store your age... in a program and your name you can do that by declaring variables...
java

int age = 20;
String name = "bbq";


you can then display them also using print statements
java

System.out.println("Name : " + name);
System.out.println("Age : " + age);


Program
java

class Test
{
String name = "bbq";
int age = 20;

public static void main(String[] args)
{
System.out.println("Name : " + name);
System.out.println("Age : " + age);
}
}


they will be stored till the program no longer needs them (cannot access them).. then i believe the java garabage collector will free them up... Is that what you are after ?

Check out some tutorials on variables... cool.gif

This post has been edited by bbq: 13 Oct, 2008 - 01:33 AM
User is offlineProfile CardPM

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 11/23/08 04:25AM

Live Java Help!

Java Tutorials

Reference Sheets

Java Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month