35,618 Topics

Member Avatar for
Member Avatar for mauro21pl

Hi guys I started to learn java and have a little problem\. When I try to compile my little program it says : assgn2.java:40: variable overnight might not have been initialized System.out.println(overnight); [CODE]How is that? The code: import java.io.*; public class assgn2 { public static void main(String[] args) throws IOException …

Member Avatar for Black Box
0
138
Member Avatar for abhishek2301

Hi, I am using a JSP from to collect data from user and then inserting those values into a table in MySQL.But it is returning 'null' always.I am able to query the DB and view the entire table and everything else is fine. But the INSERT is not working somehow!!! …

Member Avatar for tommybobby
0
148
Member Avatar for binayraja

Dear sir, I am using jsp(Model View Controller platform) for making web site. I have to create dynamic treeview by quering data from database. I think I have to use ajax , jsp code for making tree. Can anybody help me. Thanks.

Member Avatar for tommybobby
0
151
Member Avatar for staneja

I am executing a project that have 100 jar file attached to it I am able to execute it in Eclipse but i want to run it from batch file but the problem is that i am not able to set class path , whereas in eclipse we can direclty …

Member Avatar for ~s.o.s~
0
97
Member Avatar for Dio1080

I need help making a counter uusing a two dimmensional array. I'm doing a tic tac toe program and need about done, just need the counter and have no clue how to do it.

Member Avatar for Ezzaral
0
81
Member Avatar for degamer106

So we're supposed to modify this class, which implements Comparable, so that it accepts any type of object. The Comparable interface contains the method signature for compareTo, which I need to implement. What I'm uncertain of is how to implement this method. I know that compareTo is supposed to return …

Member Avatar for degamer106
0
86
Member Avatar for Danii

HI problem: Write the definition of a class Clock . The class has three instance variables: One of type int called hours , another of type boolean called isTicking , and the last one of type Integer called diff . You should also write a constructor that takes three parameters …

Member Avatar for ~s.o.s~
0
191
Member Avatar for freakhina

hey everybody!! i urgently need a project in java for electricity bill generation software kindly contribute as much as possible... i m in real trouble

Member Avatar for jwenting
0
81
Member Avatar for shikhu

Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); //Registering driver type Connection con=DriverManager.getConnection("jdbc:odbc:proj"); // Assigning drivermanager con.setAutoCommit(true); //String str="insert into dovetail values('"+id+"','"+a+"','"+b+"','"+res+"')"; String str="insert into dovetail values('ASDF','Raj','1234','198')"; Statement stmt=con.createStatement(); // creating statement object int ret=stmt.executeUpdate(str); System.out.println(ret); if(ret==0) { System.out.println("Not Inserted"); } else { System.out.println("Data Inserted Successfully"); } /*str="select * from dovetail"; ResultSet resl=stmt.executeQuery(str); boolean val=resl.next(); while(val) { …

0
36
Member Avatar for alpakr
Member Avatar for tactfulsaint

Hello everyone please i need help .. i am new 2 java and i was given this assigment of which i dont even know where to start from...If anyone can help please IM me so i can send him the question or perhaps for a little guidance on how to …

Member Avatar for masijade
0
204
Member Avatar for learning2java
Member Avatar for Danii

Hi Please help me with this problem Write the definition of a class Play containing: An instance variable counter of type int , initialized to 0. A method called increment that adds one to the instance variable counter . It does not accept parameters or return a value. A method …

Member Avatar for Black Box
0
226
Member Avatar for Dio1080

I need help understanding why my code doesn't work while using number coordinates. I'm using a two dimensional array, I would like to post my code so you guys can check my errors, but I don't want anybody else to steal it, can anybody help?

Member Avatar for Black Box
0
118
Member Avatar for piers

I have been given a homework this is it: [QUOTE]Homework 7 Due in your lab in week 10 For this homework you are expected to write one program, which consists of a main method and an insertWord() method. You must work on the program outside the formal laboratory sessions. The …

Member Avatar for iamthwee
0
98
Member Avatar for hidash_in

hi, i am using tomcat server to executing the jsp files. my task is to open an application while clicking the hyperlink it throws an popup error msa Access is Denied. and also i used the path of a file in href it also not opening a file. give me …

Member Avatar for jspEthusiast
0
98
Member Avatar for sania kohli

hi, I have created servlets for hotel management. In that i want to create a search engine to search the customers by their name & by their room no so will u please help me out in that.

Member Avatar for darkagn
0
433
Member Avatar for rickster11

My loop keeps looping...even after the condition is changed to false. Whether I enter a "y" or an "n" my loop still loops. I know it's never leaves the loop, because I never get the "do I get here" println. This is my first time with booleans...so maybe I'm doing …

Member Avatar for masijade
0
142
Member Avatar for shipar

hello, i am a new comer. is it possible [COLOR="Red"]to read data (e.g. some integers followed by a unique word) from a defined web page of a defined web site?[/COLOR] if possible please help me or suggest me which language is appropriate to do the job.........

Member Avatar for shipar
0
110
Member Avatar for Java-Newbie

Is there a way to find if an entry is indeed a number without using try/catch? I want the program to keep asking the user to enter a number if s/he is "silly" enough to input something else. [code] System.out.print( "\n¿Edad minima a buscar? " ); edadMinima = input.nextInt(); [/code] …

Member Avatar for jwenting
0
152
Member Avatar for newbieGirl

Hello all -- found myself stuck on a certain bit of code dealing with a number pattern I put together. I've written out most of the code, but I'm stuck in 2 areas - thought maybe someone could help shed some light. It seems like it would be very simple, …

Member Avatar for Black Box
0
660
Member Avatar for newbieGirl

I guess I'm having a lot of problems tonight with this program I'm trying to accomplish for myself... I'm trying to write an application called TestNumFactors which defines a static method with header "public static int numFactors(int n)". When numFactors is called, it should return the number of factors of …

Member Avatar for darkagn
0
479
Member Avatar for hidash_in

[B]how to open any exe file using java. i alrerady used the Runtime.getexec() code. but when i refresh the page the application is opening. my thought is the application should be open after clicking the button in jsp page. if u have any code send me.[/B]

Member Avatar for masijade
0
116
Member Avatar for degamer106

So here's the problem [QUOTE]Write a program that asks the user to input a set of floating-point values. When the user enters a value that is not a number, give the user a second chance to enter the value. After two chances, quit reading input. Add all correctly specified values …

Member Avatar for degamer106
0
197
Member Avatar for newbieGirl

Just curious... I've got a snippet of code I'm trying to put together, and what I'm trying to get it to do is to print out the word "yes" exactly when i ends in the digit 4, or j ends in the digit 7, or both. I know my if …

Member Avatar for Ezzaral
0
86
Member Avatar for akhiero

I have been working on an inventory program for school and it is all working. What I need help now is making a GUI for it. To display one item at a time with a buttons like First Item, Next Item, Previous Item, and Last Item. Could someone help me …

Member Avatar for Ezzaral
0
203
Member Avatar for mrityunjay22

my jsp and servlet are in Z: drive and i want to configure eclipse for application server plz tell me how to do it

Member Avatar for lookof2day
0
140
Member Avatar for mrsmoke

Hi, I'm trying to make my own sokoban game in java. Sokoban is a top down 2D puzzle game where you move around a level trying to push boxes to the goal area in the least possible moves. I'm already pretty stuck at an early stage. My first objective it …

Member Avatar for schoolsoluction
0
117
Member Avatar for enes

i have java strategy game project.however ı dont know how can ı control the map.for example when player selected a dıvısıon how can ı get ıts poınts to know which division is selected.to be able to thıs ı should have all coordınates of the maps(every poınt).of course ıt ıs ımpossible.there …

Member Avatar for darkagn
0
102
Member Avatar for john_mark386

Hello, any tutorials in how to use bubblesort, selection and insertion? Help is greatly appreciated. Thank you.

Member Avatar for peter_budo
0
112

The End.