32,199 Topics

Member Avatar for
Member Avatar for princeinc

can anyone pls help me to complete this questions?? i'm new in programming , n i'm not very sure how to even start to do this programs....so help needed urgently..preferably the program can be done in Java or C ++... thank u No1. Develop a program to simulate a computer …

Member Avatar for freesoft_2000
0
116
Member Avatar for switty

Hi! I'm a student and I have a project in Java and its title is Virtual Keyboard....can you please help me on how to create that virtual keyboard pls...and also can you please leave your e-mail add so that i can chat with you....thanks a lot! :lol:

Member Avatar for switty
0
189
Member Avatar for indianscorpion2

hi i am new to the concept of object oriented programming.i would say that i have command over the C language.i am now a beginner in java. i am not able to understand all the stuff like objects,public,classes,encapsulation.................and so on. are there any easy tutorials for beginners like me on …

Member Avatar for proghelper
0
127
Member Avatar for Sailor_Jerry

For example Class A does not have a default constructor. Class B extends A Any reason/benefits to do this? [code] public class B extends A { public B() { super(); } } [/code]

Member Avatar for proghelper
0
185
Member Avatar for bumsfeld

Can I wrote an object to files and later on retrieves it with its integrety intact? Is there a ready made function or do I have to write one? I am new to Java, is this what one calls serialization?

Member Avatar for mmiikkee12
0
102
Member Avatar for splifficus

Just started a Java class and the first HW assingment was issued. I have read the chapter a million times and cant figure out what the heck am I doing wrong. The assingment is supposed change Celcius temperature to Fahrenheit using a worker class. import javax.swing.*; public class ConvertTemperature { …

Member Avatar for splifficus
0
129
Member Avatar for visual one

hi I need a java program that will use parallel array to hold an account number, account holders name, withraw, deposit, intial balance, balance and overdraft fee. It must also print out the account number, account holders name and balance. thanks

Member Avatar for server_crash
0
418
Member Avatar for dummy00

are the codes correct? because im having some errors in getting the output. tnx create a program that will generate the following display: use method declaration without return and with argument list. Input value for the height of triangle. 5 54 543 5432 54321 5432 54 5 import java.io.*; public …

Member Avatar for proghelper
0
105
Member Avatar for Sailor_Jerry

What are the benefits\drawbacks about the design below? Here is a simple example of the possible class design. What are the benefits of doing it this way? vs. just dropping the interface class all together. ================================= Public interface Car { public String getColor(); public void setColor(); } ================================== public class …

Member Avatar for proghelper
0
197
Member Avatar for freesoft_2000

Hi everyone, I am currently trying to serialize parts of a jtextpane using the java ObjectOutputStream to write it to disk and when i am reading the object back i am using the java ObjectInputStream. When i read the api about the streams here is what they say [QUOTE] Warning: …

Member Avatar for jwenting
0
387
Member Avatar for vps

hello everybody I want to overwrite the names which are already existing and to append the new names in a file. can anybody plz help out. if i use the FileWriter(Fname,boolean true), it appends the even the ones which are existing, i want to append the new ones only. regards …

Member Avatar for jwenting
0
167
Member Avatar for ayk-retail

I am taking Java next year but am wondering whether C++ is more difficult than Java?

Member Avatar for Phaelax
0
98
Member Avatar for randallnefdt

Hi All, I've just started using java and created a "HelloDate" program which works 100%. After that I created a "HelloWorld" program which didn't work because I had made a mistake in the code. I then rectified the mistake, deleted the class and then recompiled the "HelloWorld" program and it …

Member Avatar for Daishi
0
281
Member Avatar for sam1

hi im constructing a rectangle in main method, i wrote: [CODE] rectangle t = new rectangle();[/CODE] but i get message on compilation: [CODE] cannot find symbol symbol:constructor retcangle() location:class rectanlge() rectangle t = new rectangle(); ^[/CODE] what is wrong?

Member Avatar for hooknc
0
140
Member Avatar for mom2gr8kids

I'm hoping some of you beautifully talented webdesigners can help me with what I'm assuming is a setting in IE. The problem I'm having is that everytime I click on a link to a webpage that contains any java it takes for ever for the page to appear. Sometime IE …

Member Avatar for ayk-retail
0
80
Member Avatar for sam1

hi all im writing a function for rectangle where it takes a rectangle and return a rectangle (same top-left vertex) but reduces the width and height by a,b respectively..... i have done this [CODE]public int shrink(int a, int b) { return (this.width -= a)&&(this.height -= b); } [/CODE] but i …

Member Avatar for alpha_foobar
0
139
Member Avatar for smmuols83

Please help me. I'm trying to download java and I keep getting a message that says "Error 1311 source file not found. C:\Documents and Settings\owner\local settings\content. IE5\kxabstqz\ja150000[1].cab". I have no clue what it means and when I called gateway they told me that the instructions to fix it would be …

Member Avatar for server_crash
0
149
Member Avatar for kccomputerdr

I usually just use Opera with java on My Mandriva LE 2005, but thought I'd try to get Firefox to work with Java, so i followed the directions by placing the link to libjavaplugin_oji.so in the Firefox pluggins folder. yeah it works great for a second or 2 & then …

0
96
Member Avatar for sam1

hi every one i was just wondering does Code: [CODE]int left = x > rect.x ? x : rect.x;[/CODE] means the same as Code: [CODE] if (int left = x && left < rect.x) { return x; } else return rect.x;[/CODE] or something else? thanx

Member Avatar for jwenting
0
96
Member Avatar for MonkeyCode

Hello, DaniWeb, I'm trying to get better at troubleshooting, so I'd like to see what process other people go through. I have three communication devices that aren't working in my program... a connection to a MySQL database, a keylistener, and a treat feeder. On the other hand, some other communication …

0
54
Member Avatar for JavaFish

Hi I have created an array of random numbers but I need to stop duplicate numbers being added to the array so I have added the boolean 'fresh'. however, I somehow need to tell my 'fresh' to only check the number of elements added to the array so far and …

Member Avatar for hjangel
0
443
Member Avatar for freesoft_2000

Hi everyone, Please bear with me as i have a rather silly question. Lets say i have an object and i want to convert that object say a document or any other object to an array of bytes. Does anyone know how to do this? Any help is greatly appreciated …

Member Avatar for DeepZ
0
319
Member Avatar for kittie

I would appreciate any help (I am very much a beginner in Java) what is this error message and also do I use init() or main() for applet? Thank you so much //JavaAirlinesApplet.java ERROR MESSAGE: /*JavaAirlinesApplet.java:8: JavaAirlinesApplet is not abstract and does not override abstract method actionPerformed(java.awt.event.ActionEvent) in java.awt.event.ActionListener public …

Member Avatar for kittie
0
251
Member Avatar for dmart

i have the following code that reads user input characters and displays the string entered in reverse order. import java.io.*; /** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: </p> * @author not attributable * @version 1.0 */ public class ReverseString { public String reverse(String …

Member Avatar for freesoft_2000
0
149
Member Avatar for dmart

Refer to my previous thread for the code that I already have. I have reached dire straits and I can't figure out what to do. I have to get this running for an entry level position that I applied for.

Member Avatar for freesoft_2000
0
58
Member Avatar for freesoft_2000

Hi everyone, I am trying to to read and write large files about 600M. The thing is when i use the normal FileOutputStream methods an exception gets thrown saying [code] java.lang.OutofMemory [/code] This is how i am trying to read the file [code] FileOutputStream out = new FileOutputStream("C:/my_life_story.zip"); InputStream in …

Member Avatar for freesoft_2000
0
356
Member Avatar for JavaFish

Hi I am having a bit of trouble with a do while loop. I either can't get it to stop, or it doesn't do exactly as I need it to. I am using a array called nums to insert random numbers into a binary search tree. Once the tree has …

Member Avatar for JavaFish
0
119
Member Avatar for hjangel

I am trying to write a game that will read check boxs to find the difficulty level that the user wants, then using the parameters behind each level create an array of a certain length using a certain range of numbers. For some reason it seems to ignore my parameters …

Member Avatar for freesoft_2000
0
82
Member Avatar for Rete

Hi, I was hoping if anyone could help me really quickly. A section of my program needs to discern between java primitives. I've had to make regular expressions which look for the different characteristics between each primitive, but I don't know what some of them are. Below are all the …

Member Avatar for freesoft_2000
0
156
Member Avatar for JavaFish

Hi I have a JTextpane where i will be adding instructions. I know this will not be large enough, but there is no further space on my interface, so I need to add either a scrollbar or scrollpane. I have tried a few attempts at this but cannot get either …

Member Avatar for JavaFish
0
2K

The End.