32,199 Topics

Member Avatar for
Member Avatar for tyson.crouch

G'day, I'm obtaining a set of data from the DB. I know that i must use an array, however i cannot for the life of me remember what type of array i need to use. My data set contains String, Double and datetimes. Should i use an arraylist ? or …

Member Avatar for javaAddict
-1
295
Member Avatar for zyaday

I am instantiating an object of one class with aanother class.. here is how the line is.. Class1.method1(); where method1 goes something like this .. method1(){ Class2 c = new Class2(); } After creating the c object of Class2, is there anyways i can know which class instatiated it(Can i …

Member Avatar for javaAddict
0
88
Member Avatar for Phaelax

I need to make my popup class observable and the main frame class observer. When the user clicks the ok button on the popup, I need the string from the popup's textfield returned to my main program. Main fram class. [CODE] import javax.swing.*; import java.util.*; import java.awt.*; import java.awt.event.*; public …

Member Avatar for masijade
0
448
Member Avatar for sleek182

Hi I am in my final year of a Software Engineering degree and will be shortly starting my final year project. However I have not yet decided on a title for my project. I have recently been looking at neural networks and find the topic very interesting. However as I …

Member Avatar for peter_budo
0
140
Member Avatar for teenybopper

I need to write a program, which shows the different combinations in which matrices can be multiplied. The output should look like below : When there are two matrices multiplied there is one combination (XX) When there are three matrices multiplied there are two combinations (X(XX)) ((XX)X) When there are …

Member Avatar for jwenting
0
88
Member Avatar for Aissi

Hey, netbeans is giving me gray hairs with the localization wizard. First up, how can I completely remove a localization or resource bundle, now when I delete the file in the projec tree, it pops up right back up when I write the names of the components again. Second why …

0
139
Member Avatar for Roy_Valentine

Can anyone help me fix this problem I have with my code. I am supposed to be writing a Binary Insertion Sort method that calls a binary search method. I have code that is working for in order integers, when tested on reverse order integers it works except it places …

0
118
Member Avatar for Cort3z

Hi, I'm working on a game for a homework assignment. We are a group of 4 and basicly got the game running now, but we got issues with the rendering/drawing. I use BufferStrategy to get double buffering, and i have a custom draw-loop in a canvas. What this does is …

Member Avatar for Cort3z
0
95
Member Avatar for alisonchan30

Dear All, I would like to change the content pane of frame after pressing a button by the method: frame.setContentFrame(newContentFrame); However, after press the button, the Frame is frozen~~ How can I make it work? THANKS A LOT~~ [CODE]import javax.swing.*; import java.awt.event.*; public class Test{ JFrame main; JPanel panel1; JPanel …

Member Avatar for smoothe19
0
171
Member Avatar for brian505

Hi, In my application I am able to get logged in userid in profile tab page. I want to call a java script function in profile tab page to get dynamic data. Can I call a java script function in profile tab page? I want to call that js function …

Member Avatar for BestJewSinceJC
0
38
Member Avatar for ttboy04

I have been asked to write a public method called Caught() which takes a single argument of type LittleAlien and returns no result, for the AlienGame class. The method should check whether the argument occupies a stone corresponding to the stone occupied by the BigAlien. If so, the health of …

Member Avatar for ttboy04
0
160
Member Avatar for elSifa

IĀ“m sorry if I havenĀ“t investigated enough but IĀ“m not quite an expert in hibernate and IĀ“m tired of looking for something that wonĀ“t really solve my specific problem. What I mean is that I am a bit short of time. I have a User class that represents every single …

Member Avatar for quuba
0
2K
Member Avatar for bondgirl21

Hi, I wanted help implementing how to count vowels and preposition in a text file..this is what i have for counting words, the other are blank because i simply can't get it to work..Help is greatly welcomed.. [CODE]import java.io.*; public class FileIO { public static void main(String[] args) throws IOException …

Member Avatar for bondgirl21
0
1K
Member Avatar for deep.bwn

I can open .xls file with Desktop class. then edit something in the file. then save and close but. but next time when i open the file again it open previous one not updated if didn't i save it in different place. .I cant get any column/ value from the …

Member Avatar for peter_budo
0
57
Member Avatar for Pritha17

hello, I'm using eclipse platform to try to transfer file using Java mail API, but facing the following exception java.lang.NoClassDefFoundError: com/sun/mail/util/SharedByteArrayInputStream I know this is a common problem, but i've tried all possible measures to get rid of this exception here's what i tried * I downloaded javamail-1.4.3 from sun …

Member Avatar for parry_kulk
1
4K
Member Avatar for hidash_in

hi all, i cant able to open some applications like word,excel,adobe indesign,xml through java. and i used Runtime.getexec(); code but here when we run the program the application is automatically opening. i dont need to open on execution of the program. and also at the same time i want to …

Member Avatar for masijade
0
231
Member Avatar for javastu

I have create a class called Airline Reservations and I have all my codes by I am having trouble assigning seats in the plane and need some help. Please help.

Member Avatar for BestJewSinceJC
0
104
Member Avatar for white feather

[CODE] private Map<String , String> c = new HashMap<String , String>(); .... //regx to get mString c.put(mString.group() , mString.group()); ..... //regx to get mNumber c.put(mNumber.group() , mNumber.group()); ....... Set set = c.entrySet(); Iterator i = set.iterator(); while( i.hasNext() ) { Map.Entry me = (Map.Entry) i.next(); System.out.println(me.getKey() + " : " …

Member Avatar for white feather
0
175
Member Avatar for Robot1199

i need a little help here, what i need to do is create a ticket purchasing page where once the user has made a selection he/she is prompted for amount .And to pay that amount buttons are used .every time a button is clicked the amount reduces. I also need …

0
22
Member Avatar for themarval

Sorry for thee length but i have seven classes for this program. I took several functions and modified them to create a gui interface. I created a JFrame with 4 tabs that contain text only, then i have a 5th tab that has functional JButtons that when selected should prompt …

Member Avatar for rcsamich81
0
171
Member Avatar for mathpro

Hello, I am working on a A* Search Program using a MinHeap in order to get the lowest F(x) valued nodes, however, I am not sure why my MinHeap starts going crazy. I tried the MinHeap Code alone, and it worked fine, but when I run it together with the …

0
19
Member Avatar for punchinello

If I want to write a program that implements remote control of a computer over the internet. What programming knowledge do I need? How should I go about doing that? Any literature you want to recommend? Thank you very much!:)

0
53
Member Avatar for cool4angle

Dear friends, I am interesting in doing a project using 56K voice modem(normal modems that comes with pcs) to dial connected PSTN. After other party left the receiver, I am hoping to play a music or recorded voice clip to listen to them with the response of therm. Java is …

0
28
Member Avatar for bustersox

I have having problems figuring out how to get this code to run properly. I cannot seem to get my do-while loop in the main method to repeat. Also, I am having issues with my getConsonants method. It seems to always count 1 less than there actually is. Lastly, not …

Member Avatar for moutanna
0
2K
Member Avatar for jamesonh20

I was just wondering if it were possible to link a sound to an option selected in a scanner class in java? For example: [CODE]import java.util.*; public class GameTest { public static void main(String[] args) { Game myGame = new Game(); Scanner myScanner = new Scanner(System.in); int size = 30; …

Member Avatar for jamesonh20
0
160
Member Avatar for elSifa

[CODE] @ManyToMany (fetch=FetchType.LAZY) @JoinTable( name="confirmed_join_table", joinColumns={@JoinColumn(name="user_id")}, inverseJoinColumns={@JoinColumn(name="match_id")} ) @IndexColumn(name="position") private List<Match> confirmedMatches = null; @ManyToMany (fetch=FetchType.LAZY) @JoinTable ( name="candidates_join_table", joinColumns={@JoinColumn(name="user_id")}, inverseJoinColumns={@JoinColumn(name="match_id")} ) @IndexColumn(name="position") private List<Match> candidateMatches = null; [/CODE] This is what I have in one of the classes, the other class has the inverse association, but I donĀ“t think …

0
140
Member Avatar for brianmack

I'm having trouble with this code. I'm sure it's something stupid (I'm in a class for Java) so please forgive this Java Newbie. [code] package Student; import Entity.*; import ExceptionManagement.StudentException; import java.util.ArrayList; import java.util.List; import javax.swing.*; public class DataManagerBean implements DataManager { ArrayList<Student> students = new ArrayList<Student>(); ArrayList<Course> courses = …

Member Avatar for BestJewSinceJC
0
244
Member Avatar for sinister747

Hi All, I could really use some help in sorting vectors, i know the collections.sort(x) method will sort a vector of numbers etc however i have a vector full of objects and i need to sort them; the object contains details of a website please find the fields below; [CODE] …

Member Avatar for moutanna
0
134
Member Avatar for kvass

Hi guys~! Consider the following code: [CODE=Java] public void reset(int[] arr) { for (int i=0;i<arr.length;i++) { arr[i]=0; } } [/CODE] I know that regardless of what the actual array is before this method is called it will not change afterward because the method cannot modify it since it is not …

Member Avatar for kvass
0
95
Member Avatar for pringles08

[code] //to check if numeric public boolean checkNumeric(String user_input) { for( ; x <= user_input.length() ; x++ ) { if(!Char.isDigit(user_input.charAt(x))) { return flag; } } return noError; }[/code] it says: cannot find symbol variable- char Help please.

Member Avatar for BestJewSinceJC
1
152

The End.