31,001 Topics

Member Avatar for
Member Avatar for kittie

I would appreciate any help (I am very much a beginner in Java) what is this error message and also do I use init() or main() for applet? Thank you so much //JavaAirlinesApplet.java ERROR MESSAGE: /*JavaAirlinesApplet.java:8: JavaAirlinesApplet is not abstract and does not override abstract method actionPerformed(java.awt.event.ActionEvent) in java.awt.event.ActionListener public …

Member Avatar for kittie
0
250
Member Avatar for dmart

i have the following code that reads user input characters and displays the string entered in reverse order. import java.io.*; /** * <p>Title: </p> * <p>Description: </p> * <p>Copyright: Copyright (c) 2005</p> * <p>Company: </p> * @author not attributable * @version 1.0 */ public class ReverseString { public String reverse(String …

Member Avatar for freesoft_2000
0
148
Member Avatar for dmart

Refer to my previous thread for the code that I already have. I have reached dire straits and I can't figure out what to do. I have to get this running for an entry level position that I applied for.

Member Avatar for freesoft_2000
0
57
Member Avatar for freesoft_2000

Hi everyone, I am trying to to read and write large files about 600M. The thing is when i use the normal FileOutputStream methods an exception gets thrown saying [code] java.lang.OutofMemory [/code] This is how i am trying to read the file [code] FileOutputStream out = new FileOutputStream("C:/my_life_story.zip"); InputStream in …

Member Avatar for freesoft_2000
0
331
Member Avatar for JavaFish

Hi I am having a bit of trouble with a do while loop. I either can't get it to stop, or it doesn't do exactly as I need it to. I am using a array called nums to insert random numbers into a binary search tree. Once the tree has …

Member Avatar for JavaFish
0
118
Member Avatar for hjangel

I am trying to write a game that will read check boxs to find the difficulty level that the user wants, then using the parameters behind each level create an array of a certain length using a certain range of numbers. For some reason it seems to ignore my parameters …

Member Avatar for freesoft_2000
0
82
Member Avatar for Rete

Hi, I was hoping if anyone could help me really quickly. A section of my program needs to discern between java primitives. I've had to make regular expressions which look for the different characteristics between each primitive, but I don't know what some of them are. Below are all the …

Member Avatar for freesoft_2000
0
154
Member Avatar for JavaFish

Hi I have a JTextpane where i will be adding instructions. I know this will not be large enough, but there is no further space on my interface, so I need to add either a scrollbar or scrollpane. I have tried a few attempts at this but cannot get either …

Member Avatar for JavaFish
0
2K
Member Avatar for Rete

Does anyone know how to change the colour of text in Java? I'm getting a lot of input from my user in a program I'm writing, and it gets kinda difficult to follow with it all being one colour. Any help would be greatly appreciated =D

Member Avatar for jwenting
0
124
Member Avatar for vps

hi there can anybody tell i need to use relative path to file using config file. and can i put the input files in a loop so that files with .out extension in the current dir can be processed. regards vps

Member Avatar for manchandap
0
53
Member Avatar for emman

While running the older version of jdk1.3.0 my bdk1.1 worked fine. Recently i installed the latest version of the j2sdk1.4 and the problem surfaced. Whenever i run the run.bat file, lot of exceptions are thrown at the command prompt. And some of the inbuilt beans won't be shown. As for …

Member Avatar for emman
0
202
Member Avatar for freesoft_2000

Hi everyone, I am trying to write some bits to the parallel port using the java communications port and all is okay except that i need some clarification on something. The parallel port is connected to circuit board that needs nine inputs(or better known as nine bits) Now this is …

Member Avatar for freesoft_2000
0
178
Member Avatar for Ghost

Hi Everyone, I'm making a Java chat application, but it freezes whenever I click "Connect." My code is attached below. Thanks. [CODE] import javax.swing.*; import javax.swing.event.*; import java.awt.*; import java.awt.event.*; import java.io.*; import java.net.*; public class CinnaChat extends JFrame { JLabel lblServerIP = new JLabel("Server IP:"); JTextField serverIP = new …

Member Avatar for freesoft_2000
0
260
Member Avatar for nabil1983

Does neone know the code instruction to store an array of CD objects. Each entry in the array has to be a single object describing a CD. i.e: Artist Name , Album Name, Number of tracks i've written the program out but i cannot seem to get the above right. …

Member Avatar for NPH
0
97
Member Avatar for Rete

Hi again, I know I've asked a lot of questions, and you guys have been a really big help, so sorry for all the trouble. XD But, I've got another problem. :X I've been making a reflective program, and it's more or less working right now except of couple of …

Member Avatar for jwenting
0
162
Member Avatar for gokul

Hi all, This is my first post on this forum.. i need some help.. first of all, i downloaded 90 days trail version of Sun Studio 7 enterprise from the net... when i try to install Sun Studio, it asks Domain Name .. but mine is personal computer.. i don't …

Member Avatar for jwenting
0
74
Member Avatar for sam1

hi everyone i am doing this course work, where i have two classes. one is the point2d that models a two-dimensional point. The second part, the rectangle class, require the use of the Point2D class developed in the first part of the coursework. i am stuck in following two functions: …

Member Avatar for sam1
0
146
Member Avatar for Rete

Hi, sorry again for all the trouble, but I'm trying to get a reflective program to work. It takes a method from a user, and then runs it. My program works except it only works for strings. If they arguments needed for a method require ints or floats or whatnot, …

Member Avatar for jwenting
0
115
Member Avatar for glamo

:?: can anyone tell me how to recover the data from hard disk after pressing shift+delete

Member Avatar for JeffHeaton
0
160
Member Avatar for Rete

Hi, I'm trying to make a very simple java tester program. So, my program asks the user for the name of a method, and then runs it (doing a bunch of tests in the process) Does anyone know the name of the method(s) that will allow me to do this? …

Member Avatar for freesoft_2000
0
150
Member Avatar for stevenr

does anyone know of a good java compiler that can make executable files. I want to be able to run my programs that are not applets without having to open my IDE everytime to execute them. I want to be able to asign them an icon and put them on …

Member Avatar for freesoft_2000
0
168
Member Avatar for loser1

hi everyone, i have a final year project for my BS computer science. can anyone suggest me a project on aspect oriented programming?? other suggestions are also welcome....all i need is a brief(or long) description of what to prepare. thanks

Member Avatar for freesoft_2000
0
225
Member Avatar for server_crash

Ok, what the heck causes these stupid exceptions. I can't find hardly any documentation on it. I've tried running my mortgage calculator on a different computer and it won't show up because a unsupportedflavorexception. I know it's something about the major or minor version, but what do you do about …

Member Avatar for jwenting
0
245
Member Avatar for Rete

Sorry for troubling everyone with my questions these past few days, but I keep bumping into all these weird little problems. The code below, is a sort of minor reflective program that runs methods after reading classes. [CODE]try { //getclass is a class named "Example" [B]Object instance = getclass.newInstance();[/B] //Is …

Member Avatar for Phaelax
0
96
Member Avatar for joshSCH

ok.. now that I know about the JOptionPane, I have one more question. How can you create a real executable program from the java code that u write. IT can be executed through JCreator or another java creator, but how can you make it so that its an actual java …

Member Avatar for stevenr
0
168
Member Avatar for jwenting

yes, there's an area of Java I'm almost a complete novice in (so far, I'm going full steam ahead :cheesy: ). I've the following code to filter out non-numeric input from a JTextField (which is meant to contain a timeout interval in minutes, that's why). [code] private void dumpNonNumericInput(KeyEvent e) …

Member Avatar for server_crash
0
339
Member Avatar for server_crash

I know how to run tomcat on MY computer, I just click the start button. My question is, how can I upload tomcat to a webserver and make it run forever(or at least until I click stop).

Member Avatar for server_crash
0
223
Member Avatar for Rete

I've been making a reflective program, which examines class files, and then creates an XML file that holds all it's values. But, I've been trying to now parse these XML files I've made, and I've been trying to do it using DOM. Unfortuanetly I have no clue as to how …

Member Avatar for jwenting
0
180
Member Avatar for Max_05

To all the GUI Masters, I have two questions, 1) How do I make my frame start/appear in the middle of the screen ? 2) How do I disable the control/menu box i.e the maximize,minimize,close options on the top left corner of the frame ? Wating for a favorable Reply. …

Member Avatar for server_crash
0
153
Member Avatar for server_crash

Please take a look at this link, and let me know what you think of it. If you have any problems with it, I really want to hear about them: [url]http://wizardsolutionsusa.com/MortgageApplet/MortgageApplet.html[/url]

Member Avatar for server_crash
0
142

The End.