32,199 Topics
| |
I'm having trouble getting ant to delete files. I'm working through a basic spring tutorial and it has included an ant target to clean the build: [CODE] <target name="clean" description="Clean Output Directories"> <delete> <fileset dir="${build.dir}"> <include name="**/*.class"/> </fileset> </delete> </target> [/CODE] It seems pretty basic to me, but it's not … | |
Hi, well, I have an ArrayList with this values ACU ACU ACU ACU ACY ACY AER AER AER AGC I need to get the number of items of each Word, so for ACU we will get 4, ACY we will get 2, AER we will get 3, AGC we will … | |
hey guys im new to Java programming and im trying to convert the code from an applet application to a application that would have a main method and could run on...lets say net-beans. here is the link for the applet that i want to change [url]http://javaboutique.internet.com/Absolute/[/url] and here is the … | |
Hi, I was wondering how do i go about generating unique random numbers? ie i want to generate numbers between 0-9 randomly. I dont want to repeat the numbers.Then that no: should display on the buttons.ie there are 9 buttons. first randomly generated number should display on the first button … | |
Is it possible to read a file as lines are written to it but not lose your location in the file? As in there is a program that will write lines of text to a file until it reaches 2.4MB. I want to read this file as these lines of … | |
when i run the server and the client i get the following errors: Client: [CODE]Exception in thread "main" java.io.EOFException at java.io.ObjectInputStream$BlockDataInputStream.peekByte(ObjectInputStream.java:2570) at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1314) at java.io.ObjectInputStream.readObject(ObjectInputStream.java:368) at Client.main(Client.java:29) Java Result: 1[/CODE] not really a error but it should receive the patients name?: [CODE]waiting for connection... Message Recieved:null waiting for connection...[/CODE] so … | |
Hey all..am quite new to Java and I have encountered a problem with my program. I am getting the error message "cannot find symbol constructor". I have tried to figure it out but I have failed. I have read around that adding an empty constructor would help but this is … | |
Okay this is my assignment question: Write a program that accept the format [I][B]last name, first name [/B][/I]and print out [I][B]first name, last name[/B][/I] Thats what I did: [code] import java.util.Scanner; public class Name { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("Enter your name"); String … | |
i m using netbeans for java program for jdbc connection. i m getting classnotfound exception , i have also downloaded jdbc driver for ms sql server 2005 but driver doesnot contians msbase.jar mssqlserver.jar and msutil.jar files Plz reply asap. | |
could you please help me cn u give me a code about character uppercase on its first letter | |
I'm in my 1st year of college, doing some Java programming...and really struggling. We have some project to do, to test a date...there will be 5dates and the output should be next day of the date. If anybody can help... thanks Stan | |
Few problems I'm having with Java at the moment, would be grateful if any of you could give me a hand. Wrote this piece of code to input 2 numbers from user, square root of 1, and cube root of another. Program works but I want to know while using … | |
Why java doesn't support multiple inheritance?thank you.... | |
hi forum. I have a code to return an arrayList with the duplicates of an ArrayList that has the methods get1(), get2(), get3(), get4(), which are the criteria to see if the object is duplicated, but seems it´s not working, I am comparing all items in the array... I have: … | |
Hello, I build an applet that plays midi files from a server. The problem is when I start playing the file (MidiSystem.getSequencer()).. it gives me this error in the java console and nothing plays: [CODE]SEVERE: null javax.sound.midi.MidiUnavailableException: MIDI OUT transmitter not available at com.sun.media.sound.AbstractMidiDevice.createTransmitter(Unknown Source) at com.sun.media.sound.AbstractMidiDevice.getTransmitter(Unknown Source) at javax.sound.midi.MidiSystem.getSequencer(Unknown … | |
So let's say I have an interface called ExitInterface.java. Inside there is only one method declaration, exit(). I have two classes that implement this: 1) first one is named Exit.java which does System.exit(exitCode) in the exit method. 2) second one named ExitMock.java which doesn't exit, and instead keeps track of … | |
I'm completely lost on this assignment: [QUOTE]The BNF rules (referred to as a grammar) are stored in a file. Your program is to read and echo the grammar file, and then walk the user through the process of building a sentence. Once the grammar is read, the program will prompt … | |
I'm trying to find the Big O for each of these code fragments, for an ArrayList and a Linked List: [CODE] public static int calc( List<Integer> lst, int N ) { int count = 0; for ( int i=0; i<N; i++) { if (lst.get(i) > 0) sum += lst.get(i); else … | |
Hi im wanting to write a simple client server, i want the server to retrieve information from a SQL database by querying it for eg. [CODE]Public String getID(String ID){ SQL Query code return ID; }[/CODE] that bits the easy bit i then want the client to have a simple GUI … | |
I am new to Android development. This compiles in Eclipse without any errors, but when I run it in the emulator, it crashes, why? [code=java]package com.buttontest; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.TextView; public class ButtonTest extends Activity { int timesPressed = 0; String timesPressedText = ""; … | |
// A method for finding the longest and shortest string //and a method to split each word so i can see if it is a // palindrome or not thanks for the help { public static void main(String[] args) { String string ; int index ; String sentence; String newSentence; … | |
[code] // need help with this how do i get the for loop to print out just //the alphabetic words { public static void main(String[] args) { String string ; int index ; String sentence; String newSentence; String word; int startPos; int spacePos; int wordCount; boolean lastWord; boolean alphaWord; char … | |
1.why isn't java used for [B]system programming[/B] in place of c ? 2. what does the statement 'java is [B]robust[/B] mean'? 3. what does the statement 'java is [B]multiprogramming[/B] mean'? 4. why is the concept of pointers avoided in java? Instead of using [B][I]references[/I][/B] in place of pointers in order … | |
I need to append to Map to another Map... and this is what i did .. [code] import java.util.HashMap; import java.util.Iterator; import java.util.Map; public class sampl { public static void main(String[] args) { Map<String,String> FileMap =new HashMap<String, String>(); Map<String,String> stateMap =new HashMap<String, String>(); stateMap.put("1", "value0"); stateMap.put("12", "value1"); stateMap.put("13", "value2"); stateMap.put("14", … | |
Hey guys, so i've posted here before about regex, and i was told that some of you may be able to check my regexes for errors after i have created them. I have one that looks like it should work to me, but it absolutely will not. [code] public static … | |
overriden methods provide one interface multiple methods. what is meant by one interface multiple methods | |
this is helper class . i m unable create a second table in my sqlite please observe the following code [code]helper class.java public class DBAdapter { private static final String DATABASE_NAME="satya_db"; private static final int DATABASE_VERSION=1; private static Context context; private SQLiteDatabase db=null; private static String CREATE_TABLE="create table states(_id integer … | |
hai guys my question is regarding data protection. conisder this program [code] // This class defines an integer stack that can hold 10 values. class Stack { int stck[] = new int[10]; int tos; // Initialize top-of-stack Stack() { tos = -1; } // Push an item onto the stack … | |
this is my code, can anyone find out why do i get error? i don get error if i change my array column to lower than row. [CODE]import javax.swing.JOptionPane; public class Chern_sales{ public static void main(String[] args){ double[][] sales = new double[6][7]; double[] total = new double[6]; double[] totalPerDay = … |
The End.