35,619 Topics

Member Avatar for
Member Avatar for chie12024

On our expressways, our toll ways accept payment in cash or with the use of an ePass. Cars using cash to pay the toll will always pay the correct fee. If an ePass does not have enough credits, the remaining balance is collected by the toll lane, the car is …

Member Avatar for javaAddict
0
94
Member Avatar for qariella

Ive been sitting in 3 hours trying to figure out whats wrong, read in my book, seen the Powerpoint and google search and now im giving up.. This is my last resort and I hope to learn how to do it.. Would appriciate the help guys. Well, here i post …

Member Avatar for JamesCherrill
0
158
Member Avatar for Hawkflame

Hey all, I have a program to write where I am supposed to be able to type in an array of char in one textfield and in another textfield, I can type in a "pattern" of something, enclosed in quotation marks, and click a match pattern button, outputting where that …

Member Avatar for peter_budo
0
112
Member Avatar for gitech

Hai Friends, Iam using J2ME , i can read a text file from jar (in res folder) by using InputStream is = getClass().getResourceAsStream("help.txt"); StringBuffer sb = new StringBuffer(); try{ int chars, i = 0; while ((chars = is.read()) != -1){ sb.append((char) chars); } return sb.toString(); }catch (Exception e){} but i …

Member Avatar for peter_budo
0
189
Member Avatar for craztfreak04

i tried executing this code but it compiles with the build output as "Note: K:\tower.java uses or overrides a deprecated API. Note: Recompile with -Xlint:deprecation for details. Process completed." and the General output as "java.lang.NoSuchMethodError: main Exception in thread "main" Process completed." i executed this in JCreator and it does …

Member Avatar for masijade
-3
174
Member Avatar for kgkamaraj

String[] temp=null; String st3=new String(temp); I use this code but error message is shown. I need how to recover this error.

Member Avatar for musthafa.aj
0
130
Member Avatar for laelzio.mosca

Hi, I just started my java class a few weeks ago, I have a question if you guys can help me. I`m learning about passing arguments, so I have this small code, it works perfect, the output is " 42 84 ", but I didn`t get it. what does it …

Member Avatar for musthafa.aj
0
109
Member Avatar for Relative0

Hello, I am, for some reason only getting 64K of data back from my local host as I test my program for being able to write a text file to a server and back. The remaining of the data is all spaces instead of char's, so that the original and …

Member Avatar for crunchie
0
50
Member Avatar for harry010

I've got 2 JSPs. JSP1 calls JSP2 to format a table in JSP1 JSP1 calls JSP2 using this code: [CODE] <jsp:include page='<%=(String)request.getAttribute("SB_Format_Path")%>' flush="true" ></jsp:include> [/CODE] The problem is that JSP2 has access to variable XX, at runtime but JSP1 does not have access to it. I'd like to somehow be …

Member Avatar for harry010
0
292
Member Avatar for ceyesuma

Hello. I have 3 classes ; main.java calls gui.java [code] Gui g =new Gui(); g.createAndShowGUI(); [/code] Then I have my menu.java with the actionPerformed() I am trying to call methods of the GUI.java How can I call methods on the GUI.java to and use the methods on that instance of …

Member Avatar for ceyesuma
0
92
Member Avatar for jorgelex008

Hi all, I've got a JFrame in a program, and when I click on a button, I get another JFrame created, and then select from a list. This works fine. But my problem is that when I close the second JFrame the entire program exits (both the main JFrame and …

Member Avatar for jorgelex008
0
171
Member Avatar for FotG2

I have a drag-able JLabel that I'm trying to set that object to be above all other JLabel objects when its dragged. The only method I can find that sets the order is setComponentZOrder(Component,int)' But when I Try to use it, I get a large amount of errors printed to …

Member Avatar for Ezzaral
0
115
Member Avatar for selenask

I have this error"String index out of range: 14 at java.lang.String.substring(Unknown Source)" I am unable to find the mistake in my code. A little help would be great.

Member Avatar for Ezzaral
0
70
Member Avatar for KirkPatrick

I'm wondering if it is possible to control certain aspects in my function. All my it does is control how an object gets placed on my gui. I'm wondering if there is a way to control [I]GridBagConstraints.fill[/I] and [I]GridBagConstraints.anchor[/I] [B][U]Function:[/U][/B] [code=java] public void gridBagControl(Component ob, JPanel p, Insets in, int …

Member Avatar for KirkPatrick
0
103
Member Avatar for FotG2

I am having trouble making use of a MouseMotionListener to make some card images be able to be dragged around the screen. What this program does is show a table of cards in a random order. The user will be able to drag any of the card images and move …

Member Avatar for FotG2
0
934
Member Avatar for baloonie

1/ Write a Java program that reads in a Name and Age (in years) of four persons and prints the name and age of the youngest person. Assume that all persons are of different age. The sample program run must look as follows: Enter the name of the person: John …

Member Avatar for Ezzaral
0
111
Member Avatar for beshoyatef

I hide text inside image then i want to save the image wich contain message . The problem is when i save image with JPEG it saved but give me exception : [B]java.lang.IllegalStateException: Output has not been set! at com.sun.imageio.plugins.jpeg.JPEGImageWriter.write(JPEGImageWriter.java:312) [/B] and when i save image with any other formate …

0
66
Member Avatar for JBeginer7891

Hello everyone! I have a button on my main form that allows me to get the visitInfo Table. The data are displayed inside a JTable. What I would like to know is how do I edit or delete a row from that Jtable by the click of a save button …

Member Avatar for JBeginer7891
0
4K
Member Avatar for Lee Hassig

Folks, I'm getting the following error message from Trados Studio 2009, a computer-aided translation program. "QuickInserts will not be available. Failed to create Framework 1 plug-in filter components. Failed to create Java Virtual Machine." Some Googling suggests that the problem might be caused by not allocating enough memory to Java. …

0
47
Member Avatar for timetex

As a novice JSP (and non-programmer!) I've bee doing some customisation to a browsers driven application which provides a users with CTI functionality on their desktop. My task was to create a custom "tab" on their page, which gave a series of checkboxes, with an "Apply" button. The purpose of …

Member Avatar for jwenting
0
2K
Member Avatar for Lalit Chattar

how we can resize image in jsp before uploading in database as a blob data. thank you..

Member Avatar for peter_budo
0
62
Member Avatar for nufa0550

How do you search for information in a file already created. Also how to add or delete existed information from same file.

Member Avatar for jwenting
0
141
Member Avatar for houlahan

could anyone help me i have been trying to do this for a good 2 hours now and still can't get it to work :( i have created this class diagram for the server side of my project and i can't get the inheritance right i need to be able …

Member Avatar for JamesCherrill
0
147
Member Avatar for PuQimX

[code]import java.util.*; public class array1 { public static void main(String[]args) { int[] value = new int[1000]; Scanner keyboard = new Scanner(System.in); for (int i = 0; value[i]!= -999 && i < 999; i++) { System.out.print("Enter number " + (i + 1) + ": "); value[i] = keyboard.nextInt(); if(value[i] == -999) …

Member Avatar for ainct
0
141
Member Avatar for computerfreak.7

so im trying to make a game for school that i have to have done by friday at the max my source for the main class is [CODE]//shooter game //main class import javax.swing.*; //frame import java.awt.*; //color import java.util.*; import java.awt.event.*; public class Shooter extends JFrame implements KeyListener{ Image img; …

Member Avatar for musthafa.aj
0
145
Member Avatar for qariella

This is what Im gonna do: In a class called UsefulMethods : a) Write a method public static int maxOfTwo( int tal1, int tal2) {} . As you can see this method will accept two integers as parameters and returns the larger of this two. [B]This one I rly need …

Member Avatar for qariella
0
111
Member Avatar for sessomw5098

I currently have a complete CLI program, which consists of around 12 classes. I would like to convert this program into a GUI. My weak point is using GUI when several classes are involved. My final program is going to have around 5-6 different screens. Should I incorporate the GUI …

Member Avatar for musthafa.aj
0
82
Member Avatar for sujithy15

java is robust and secure what is meant by robust and why is java robust? why is java called secure? can any one please help me with these?

Member Avatar for musthafa.aj
0
119
Member Avatar for Raghu.Pattem
Member Avatar for PuQimX

import java.io.*; public class duplicateArray { public static void main(String[] args) { // check the no. of args if (args.length != 3) { System.out.println("No. of args is not correct"); System.exit(0); } // open file BufferedReader in = openfile(args[0]); if (in == null) { System.exit(0); } // read file int Rows …

Member Avatar for musthafa.aj
0
94

The End.