32,199 Topics

Member Avatar for
Member Avatar for heysebas

Hi guys, I'm writing a Java programme, one with GUI for a project in college. We separated the work into a few guys doing a few standalone Java classes. These standalone Java classes are run by doing the usual: java -jar XXX.jar through the console. The functions of the class …

Member Avatar for JamesCherrill
0
1K
Member Avatar for Miyuki Suzuki

Hello again, today is just not my day :( I had a problem with speed this morning and got help that totally solved it, so here goes hoping for some more help. [B]background:[/B] I have an ejb that picks up a file, copies it and the has to process the …

Member Avatar for Miyuki Suzuki
0
137
Member Avatar for K?!

Hi all We have to create a program that will require a lot of database interaction. I would like to create a JList with all events where a user can select an event he would like to edit. Is there a good way to store ID's into the list and …

Member Avatar for K?!
0
114
Member Avatar for denniskhor

[CODE] private void jButton5ActionPerformed(java.awt.event.ActionEvent evt) { String readPOS; readPOS = jTextArea1.getText(); String []POS; POS = readPOS.split("[-.!? ]"); jTextArea2.append("Part of Speech Result:\n"); for(int i = 0; i < POS.length; i++) { if (POS[i].equals("makan")||POS[i].equals("kerja")) { jTextArea2.append((POS[i] + "/KK" + " | ")); } else if (POS[i].equals("sakit")||POS[i].equals("cantik")) { jTextArea2.append((POS[i] + "/KS" + " …

Member Avatar for denniskhor
0
97
Member Avatar for add4

Hi there, i am trying to create multiple clients connecting to the server. But the problem is that I can't set the Socket() constructor time.i.e by default the constructor waits to listen for 20 sec. My clients are many so that the time taking for those is hi. So that …

Member Avatar for JamesCherrill
0
103
Member Avatar for javaman2

hello again, i hate to be a bother but this is the third day im working on this assignment and i need a little help ill point out the 2 lines im having trouble with in my driver program(driver1) but ill supply you with the class definition and the driver …

Member Avatar for javaAddict
0
222
Member Avatar for Miyuki Suzuki

Hello everyone, I am having some difficulty with file handling, I hope someone can help. Here is the background: 1) I have to read a .dat file, file size varies from 692kb to 109.742kb with the following format of data: eg : ID|flag 1|y 2|y 3|y 4|y 4.37777451|y 5.52625317|y 2) …

Member Avatar for Miyuki Suzuki
0
103
Member Avatar for ckillackey

Ok, I have a homework problem that I'm needing some help with. The program has to Allow the user to specify the number of integers to be inputted into the array read a data set of number of integers into the array Determine the sum find the largest integer and …

Member Avatar for sillyboy
0
114
Member Avatar for nishantdaniweb

Hi All, I successfully deployed my application in Jboss server. My application is working file But my problem is when I first time access my application then I am getting the following error but after refresh or clicking on browser back button, I am not getting this error. This below …

0
90
Member Avatar for smithu.simi

Hello, i need to use fork() for the below problem Problem statement is program would accept various 2d arrays as inputs as long as the user wishes to enter.. Every individual sum of the array is calculated and sum of each array becomes the element of a resultant array and …

Member Avatar for BestJewSinceJC
0
107
Member Avatar for cronodevir

I have reinstalled serveral times for diffrent reasons, one of them being that javascript links all the sudden stopped working with no change in computer settings or software. Sence then, they have never worked, even after numerous reformats. I have the latest Firefox and IE, and the latest Java Enironment, …

Member Avatar for joshuastaple
0
400
Member Avatar for Andrewsc1

alright basically what the program does is convert Kilograms into pounds, then displays its on a table. There are two problems i am having the first one is getting rid of the even numbers. I've been trying combinations of modulator and the NOT expression and so far have been unsuccessful …

Member Avatar for Andrewsc1
0
107
Member Avatar for dammitjim30

Hi all! I am racking my brain trying to figure out why my code is not working for this TicTacToe board assignment. I keep getting the following error: Exception in thread "main" java.lang.ArrayIndexOutOfBoundsException: 3 at TTTBoard.makeMove(TTTBoard.java:79) at TTTGame.main(TTTGame.java:59) Java Result: 1 The assignment calls for a 3-by-3 2-dimensional array of …

Member Avatar for dammitjim30
-1
429
Member Avatar for avi_2009

Hi Everyone: I am trying to use google code rest-client ([url]http://code.google.com/p/rest-client/downloads/list?can=1&q=&colspec=Filename+Summary+Uploaded+Size+DownloadCount[/url]) to query a REST web server. But, I could not use it properly as after logging in to the web server, the session expires immediately. I am just wondering if it is by design or I am doing something …

0
37
Member Avatar for shahab.burki

Hi, I want to read an integer value from console, but my input returns the ASCII value of integer, Please Help me. [CODE]import java.io.*; class Test{ public static void main(String args[])throws IOException{ BufferedInputStream br=new BufferedInputStream(System.in); System.out.println("Enter an Integer"); int i=br.read(); //int j=(int)i; System.out.print(i); } }[/CODE] Thanks

Member Avatar for ejosiah
0
112
Member Avatar for javaman2

hi everyone, i need help with an assignment that i'm having trouble with. I need to create a class called Money whose objects represent amounts of money, with two instance variables of type int for the dollars and cents in the amount of money i got the constructors down but …

Member Avatar for darkagn
0
702
Member Avatar for coolbuddy059
Member Avatar for ejosiah
-1
92
Member Avatar for shailendranath

Hi, would anyone please tell me the latest encryption algorithm for the media file such as audio,video etc. Thanks in advance.

Member Avatar for ithelp
-1
44
Member Avatar for aparna_18

Hi all, I am working on Xalan-J XSLT processor.I have implemented the javascript extension function but in runtime it is showing TransformerException. Please help me on this. I am using `jdk1.6` and included `xalan.jar,xercesImpl.jar,xml-apis.jar;serializer.jar;bsf.jar;js.jar;xsltc.jar` into my classpath. Hereby, I am attaching the code what I have written <?xml version="1.0"?> <xsl:stylesheet …

Member Avatar for aparna_18
0
172
Member Avatar for Mr.UNOwen

Hello, I know Java and Objective C are totally different languages, but I thought may be since both are object oriented languages, there maybe some similarities between the two to help me make the transition. I also know C, so some of the stuff is looking similar. Could someone help …

Member Avatar for jasimp
0
86
Member Avatar for ZeRo 00

Guys...I am writing a program in Java which includes writing different panels where i need to pass values from one panel to another. i.e I have got a combo box to choose a title and i need to get the performances for that title in my next panel. So can …

Member Avatar for JamesCherrill
0
109
Member Avatar for farhan.foxtrot

Running this file returns the error: Exception in thread "main" java.lang.NullPointerException at Packet.<init>(test.java:20) at test.main(test.java:46) here: line 20 : this.data[i][j] = data[i][j]; line 46 : Packet packet = new Packet(4,data,count,column); can anyone help ma how to create this constructor that accepts String[][] ? [code] class Packet{ int op_code; String[][] data; …

Member Avatar for Ezzaral
0
96
Member Avatar for Narayan15

I created a html form and i want to submit the form automatically. So i used Javascript. I add that html form in java using JEditorpane, but JEditorPane doesn't support javascript. i heard that there is Rhino package which supports Javascript. But I dont know how to add Rhino in …

Member Avatar for Ezzaral
0
149
Member Avatar for mario.herbst

Hi everybody. I am a student in computers at the Hebrew University in Jerusalem. I started to work with Java - and working with Product Version: NetBeans IDE 6.5 Java: 1.6.0_11; Java HotSpot(TM) Client VM 11.0-b16 System: Windows XP version 5.1 running on x86; Cp1252; en_US I have an urgent …

Member Avatar for Ezzaral
0
98
Member Avatar for amarjeetsingh
Member Avatar for javaAddict
0
122
Member Avatar for gabec94

Hi, does anyone know what is wrong here? The program is supposed to find the largest number entered, and the 2nd largest number entered. The process for assigning the 2nd largest is not working, I do not think I am evaluating it correctly, and suggestions? [code=java] package random; import java.util.Scanner; …

Member Avatar for masijade
0
234
Member Avatar for denniskhor

Any one can tell me how to save text area thing to text file in arranged. like i save it.. become "Splited Result:New Sentence = sdsdsdsd sdsd sds.Tokenized Result:sdsdsdsd | sdsd | sds | Part of Speech Result:sdsdsdsd/KNK | sdsd/KNK | sds/KNK | i wan it become like tat : …

Member Avatar for sillyboy
0
157
Member Avatar for tygerberg

Hi I want to program a IM in java, but I don't know where to start. I can't find information on the net about IM programming. Could anyone please help me, I'm lost. I want to hopefully get the IM working from pc to mobile phone and vice versa. Any …

Member Avatar for stultuske
0
152
Member Avatar for aman_dba

hi friends i am connecting to sql server with java through eclipse as IDE. here's my base connectivity class to sql server public class BaseDAO { public Connection getConnection() throws Exception { String userName = "aman"; String password = "password"; String url = "jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=amandb"; // step 1 Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver").newInstance(); // Step …

Member Avatar for aman_dba
0
103
Member Avatar for rainny

Hi, does anyone know how to calculate the time difference between one row and another row inside one column? The time is already sort in a column. So, I hope to know that the difference time between first row and second row and consequently. Time is count by using the …

Member Avatar for BestJewSinceJC
0
91

The End.