35,619 Topics

Member Avatar for
Member Avatar for rahulrulez

Hey guys.. I've done one project on Online Shopping Cart. It is some 98% completed. I've made it using Netbeans IDE and Tomcat, MYSQL database.. I usually run it using Netbeans only. But I really want to run it in Tomcat's webapps folder. I tried it but I'm getting Can …

0
72
Member Avatar for Protoroll

I am writing a toString method for my Nursery class but am having trouble getting everything working properly. I have to go through the ArrayList and call the toString method for each individual tree and then the sum for all of the trees prices. Here is what I got so …

Member Avatar for NormR1
0
90
Member Avatar for Qabane

Hey Guys I don't get what I need to add Im fairly new in Java. this is my code but it gives me these below the line errors below [code]import javax.swing.*; public class Movies { private String name; private double price; private int year; public Movies { name=""; price=0.0; year=0; …

Member Avatar for Akill10
0
175
Member Avatar for royalx

Hi guys, I'm kind of stuck on a problem I was assigned. Pretty much we're trying to reverse words in a sentence. As in, input = Hi I am new to Java to: Java to new am I Hi I've tried this [CODE]String[]Tyler = new String[Sentence.length()]; Tyler[0] = Sentence; for(int …

Member Avatar for Katana24
0
105
Member Avatar for 47pirates

In my Project SchoolManagementSystem there i've tuition fee record in database. So what i'm trying to do is increase the student due balance automatically after 1 month time. How can i do this? Eg: For now the due balance is 1000 and the monthly cost is 800 so after 1 …

Member Avatar for Akill10
0
60
Member Avatar for Protoroll

I have two constructors that are pretty much exactly the same except that one also takes in a boolean value. I want the constructor with four parameters to the call the other one in order to get the the first three. Here is what I have so far. [CODE] public …

Member Avatar for ~s.o.s~
0
105
Member Avatar for rob3097

I figure my formulas are wrong and need tweaking. Can someone help[CODE]package mortgage_calculator; /* Write the program in Java (without a graphical user interface) using a loan amount of $200,000 with an interest rate of 5.75% and a 30 year term. Display the mortgage payment amount and then list the …

Member Avatar for kramerd
0
157
Member Avatar for ceyesuma

I have a java app that used to use a property and I am not sure with the changes I've made to the class path how to find the driver. I thought I was using the exact same installation but I can't find the driver. Can someone please tell my …

Member Avatar for ~s.o.s~
0
495
Member Avatar for NewOrder

[CODE]import java.io.*; public class EnumEx3 { /** * @param args */ public static void main(String[] args) { Fishs fishs=Fishs.AMNON; System.out.println(fishs.getX()); } } enum Fishs { BURI(20), AMNON(50); private int x; private Fishs(int x) { this.x=x; } public int getX() { return x; } } [/CODE] i have that code and …

Member Avatar for ~s.o.s~
0
116
Member Avatar for fullofdoubts

how do i use the same frame object for multiple classes...without overwriting the data..like..i am using a frame and i am using the same object on which i can draw a cirle..and then when i call another class to draw a rectangle..both circle and rectangle r being drawn...this is becuz …

0
49
Member Avatar for slvrmoon32

I need to create a Car class that has the following fields: brand, model, and speed. Each of the fields should have accessor and a mutator methods. In addition the class should have methods that allows the user of the Car class to accelerate and to brake. Accelerating or braking …

Member Avatar for Beauty1304
0
223
Member Avatar for tushartyagi

For my final year project, I plan to write a cloud server using Python. The client will be written by the other team member in Java. The first and foremost problem I have is make the necessary communication between the server and clients. For server to client talk, I thought …

0
60
Member Avatar for dhondu
Member Avatar for peter_budo
0
27
Member Avatar for DoEds

Why am i getting this error? Can someone help me? You can compile it. I'll post all the necessary codes. Because i dont have enough time. Please this is really urgent. *argg my head hurts*** I put in an archive. [CODE]http://h1.ripway.com/Caterwauler/findTheCheese.rar[/CODE]

Member Avatar for JamesCherrill
0
124
Member Avatar for pavan146
Member Avatar for impaler_prince

We are writing a program in JAVA that thru a series of questions helps the user build a computer. This is being done with Radio buttons. We are wanting to know if it is possible to store the selections as objects in the database. So that is the user wants …

Member Avatar for ~s.o.s~
0
113
Member Avatar for xc3ss1v3

Good morning all. I'm having some difficulty in reading from a sequential file. I think I have my code set up properly, but when ran, it throws an exception which show me the error statement I specified. When I ran a debug, it does seem to be pulling the information …

Member Avatar for xc3ss1v3
0
665
Member Avatar for jtresue

I have written this program but for some reason it isn't appending to the file? import java.io.*; public class numbers { public static void main(String[] args) throws IOException { FileWriter grades = new FileWriter(new File("grades.txt")); String temp = ""; for (int i=0; i<=100; i+=2) { temp = String.valueOf(i); grades.write(temp); grades.write(","); …

Member Avatar for jtresue
0
136
Member Avatar for mramkumar

Hi, my front end is jsp and my backend is mysql iam design online cinema ticket reservation . It contains no of seats. if i choose 3 or 4 seats in checkbox,it stored in my database. After i refreshing the page that checkbox seats should be bolocked.. im saving film …

0
45
Member Avatar for mramkumar

hi, im doing it in jsp and my backend is my sql ... im inserting the checkbox values and some details in table but for checkbox values i have given the executequery statement(where we write query) as integer so all other string details are not inserted in table it show …

Member Avatar for mramkumar
0
191
Member Avatar for Ghost

Hi: I just wanted to see the capabilities of java. Can you please post your favorite project (that you've made). If you want, please also post the source code. Thanx, C++

Member Avatar for masijade
0
610
Member Avatar for jliao20

Below is my LinkedList class and also a private Node class inside it, I also write a unit test method to test if every method in LinkedList work, but the hasNext() and Next() ultimately failed. Please let me know what is wrong with the next() and hasNext() method. Here is …

Member Avatar for kramerd
0
7K
Member Avatar for jalpesh_007

How to implement following C++ program into Java using the file system.. Please help me. please send the java code on <EMAIL SNUPPED> thanking you. [CODE] /*Header Files*/ #include <stdio.h> #include <conio.h> #include "bcio2.h" #include <math.h> #include <stdlib.h> #include <string.h> #include <time.h> /*Function Prototype*/ void sleep(void); void sleep( int nbr_seconds …

Member Avatar for javaAddict
-3
217
Member Avatar for judgemental

[CODE]/** * @(#)aboutUs.java * * * @author * @version 1.00 2010/10/7 */ import javax.swing.*; import java.awt.*; public class aboutUs extends JFrame{ private desPanel des=new desPanel(); public static void main(String args[]){ aboutUs frame=new aboutUs(); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frame.setVisible(true); } public aboutUs() { desPanel.setTitle("About us"); String desc="This Choose Your Flavor is a shop that …

Member Avatar for javaAddict
0
456
Member Avatar for harbir

hi, I have three jsp files. main.jsp grizzly-link-application.jsp grizzly-link-menu.jsp In the mail.jsp I am including the other two. [CODE]<%@ include file="/WEB-INF/jsp/grizzly-link-application.jsp" %> <%@ include file="/WEB-INF/jsp/grizzly-link-menu.jsp" %>[/CODE] my grizzly-link-application.jsp and grizzly-link-menu.jsp files are actually pointing to the different css files. Content of grizzly-link-application.jsp is: [CODE]<link id="grizzlystyleid" title="grizzlystyletitle" href="style/application/grizzlystyle.css" rel="stylesheet" type="text/css"/>[/CODE] Content …

0
48
Member Avatar for prem2

Hi all, Can any one say how to execute the below programs .I need some packages to run the programs .Kindly specify the packages and their links. URL: [url]http://code.google.com/appengine/docs/java/xmpp/overview.html#Sending_Instant_Messages[/url] Thank you, With Regards, Premnath.M

Member Avatar for ~s.o.s~
0
182
Member Avatar for sciprog1

Hello Members, I have a JFrame, which creates a JDialog upon clicking. In the JDialog, I have a JCombobox. When I choose one of the options in the JCombobox, I should be able to change the background color of the JFrame randomly in an open ended loop. When I then …

Member Avatar for sciprog1
0
81
Member Avatar for sciprog1

Hello Members, Is it possible to write a Client/Server program between two PCs in a LAN? If yes, besides the IP address of the two PCs, what other information would I need? Thank you!!

Member Avatar for sciprog1
0
256
Member Avatar for nrue

I'm trying to do a q & a program which will read a question, 4 choices. Then read the answer and compare it to the correct answer. Then increments the player score, My problem is, I always get null when I run the program. Could you please help me determine …

Member Avatar for NormR1
0
507
Member Avatar for 080346

i have a problem i.e i want to add new line after the second text field; let say i have made one text field and for the second text field i want that it will come in the next row, now how i displayed it in the second row?? thnx

Member Avatar for kramerd
0
101

The End.