32,199 Topics

Member Avatar for
Member Avatar for snail_snail21

I want to create User Login page, but i have no idea about this, any idea for me? because just start to learn java, but i need create Login page....

Member Avatar for snail_snail21
0
246
Member Avatar for retrob89

Ok...so I have a project due in 3 weeks and I haven't started. If i don't get it done I won't be able to graduate...the problem is i don't get java AT ALL...if anyone is willing to help me out with parts of the project..i would deeply appreciate it. I'm …

Member Avatar for crunchie
0
95
Member Avatar for arseniew

Hello I'm working on simple text editor based on jTextPane i have no problem setting text color, size, font etc. but i have no idea how to get attributes from selected paragraph. i'v tried doing it by [CODE]myPane.getCharacterAttributes().getAttribute(key));[/CODE] but what shoud be the key? any help would be appreciated

Member Avatar for sillyboy
0
58
Member Avatar for nandomendoza

Does anyone know how i would write the code for the following instructions? Print the numbers from 3 up to 40 that are multiples of 5

Member Avatar for nandomendoza
0
103
Member Avatar for zemrix

Hey everyone, It's 3am and I'm pulling my hair out trying to get this to work. I'm reading data from a file that looks like so: [QUOTE] James 20 John 30 Peter 25[/QUOTE] and I am storing it in an arraylist then outputting the data. It outputs exactly as it …

Member Avatar for sillyboy
0
83
Member Avatar for ntredame

I have to create a class called Day that will carry out certain functions. One of the things that it needs to do is it needs to be able to calculate and return the day by adding certain days to the current day. For example, if the current day is …

Member Avatar for h3xc0de
0
197
Member Avatar for redmaverick

[code=Java]class Grade { public static void main (String args[]) { final int score = Integer.parseInt (args[0]); final char grade; if (score >= 90) { grade = 'A'; } else if (score >= 80) { grade = 'B'; } else if (score >= 70) { grade = 'C'; } else if …

Member Avatar for stephen84s
0
105
Member Avatar for dyollretsel08

i have a homework. do a program using java that will ask a user to input a infix expression , and the program will convert it to postfix expression... help!!

Member Avatar for stultuske
0
126
Member Avatar for azket

Hey everyone, i just completed a Java program that writes PDFs for me using the famous iText library. Now it's my task to do the same for RTF -- but i just couldn't find a suitable library for that. Now some of you might say: "I thought iText supports RTF, …

Member Avatar for stephen84s
0
73
Member Avatar for kclove

Hello Folks., Im new to this forum and just trying to learn Java. I have a program Im trying to write in Java. [B]its about managing flights and booking flights for customers and also Alter flight should customer wish to change their mind not travelling.[/B] Im kinda confused on how …

Member Avatar for stultuske
0
108
Member Avatar for srs_grp

Hello, I want to check uniqueness of id at the time of entry only.And I want to give message to the user at that time only.How to do this?

Member Avatar for stephen84s
0
177
Member Avatar for r.stiltskin

The code below is a simplified excerpt which compiles & runs, just to show the problem I encountered. I tried to use BoxLayout in the ColorPanel method, but the JLabel "swatch" was not visible in the frame at all. I found that I can get the effect that I wanted …

Member Avatar for r.stiltskin
0
72
Member Avatar for rahulrborkar

Folks, I am using xsl and xml for Report generation. In XSL I have created a table which has 6 columns and say 7 rows, in 6th column of each row I want to display multiple rows again. For this I am thinking of passing new line character after particular …

Member Avatar for rahulrborkar
0
141
Member Avatar for zaraeleus

Okay, I am having more difficulty with my Java class again. My professor assigned us a 2-D chart program... This is the output he wants: This program displays the annual cost of gasoline for different mpg and price per gallon of gas assuming 18,000 miles driven annually. MPG 1.50 1.75 …

Member Avatar for stephen84s
0
169
Member Avatar for progurammaar

Hello there, This is my first post. I want to make a currency converter program in Java and for that i want live/real-time exchange rates. So can you please tell me how can this be done. I have full time net connection, so thats not a problem :)

Member Avatar for stephen84s
0
135
Member Avatar for lahiru17

please can u tell me how to create a software that can be used to send a email?

Member Avatar for stephen84s
0
60
Member Avatar for rlaknar

I have tried Compression & Decompression of a file using GZIP & ZIP in java.It worked well. Now I need to do it for a directory. I came to know that ZIP is useful for compressing more than one file. I dont know how to proceed. Please tell me how …

Member Avatar for stephen84s
0
56
Member Avatar for Laidler

I now have teo classes the first one contains this [CODE]import java.awt.*; import javax.swing.*; class fm1 extends JPanel { public fm1() { this.setLayout(new GridLayout(3,0)); Dimension D1 = new Dimension (300, 300); JLabel fruit1 = new JLabel(); fruit1.setPreferredSize(D1); fruit1.setOpaque(true); this.add(fruit1); JLabel fruit2 = new JLabel(); fruit2.setPreferredSize(D1); fruit2.setOpaque(true); this.add(fruit2); JLabel fruit3 = …

Member Avatar for Laidler
0
122
Member Avatar for punitdam

Is there any API to parse Word document and store it in database. For e.g. Say following is a content of word document. Name: ABC Address: XYZ Telephone: 12341234 Then from above document data extracted and stored in the table say Person_Details (Name, Address and Telephone). Can any one help …

Member Avatar for h3xc0de
0
75
Member Avatar for notuserfriendly

[CODE] class OrdArray { private double[] a; // ref to array a private int nElems; // number of data items //---------------------------------------------------------- public OrdArray(int max) // constructor { a = new double[max]; // create array nElems = 0; } //---------------------------------------------------------- public int size() { return nElems; } //---------------------------------------------------------- public int find(double …

Member Avatar for notuserfriendly
0
128
Member Avatar for sufi89

hey guys i am new to java...well data structures, i have this assignment, where we have to basically accomplish radix sort. The first method is building a master linked lists. i have not even started can anyone help with me with that package sorting; import java.io.*; import structures.linear.Node; /** * …

Member Avatar for h3xc0de
0
120
Member Avatar for devlin021

Hi, Can anyone help me how to connect cloud garden(JSDK) with Netbeans... Pls help

0
29
Member Avatar for oldSoftDev

[code][code=java] public class LineSeg{ // these are the attributes of a LineSeg object private Point end1; private Point end2; private double length; // the constructor public LineSeg(double x1, double y1, double x2, double y2) { end1 = new Point(x1,y1); end2 = new Point(x2,y2); this.length=(double)(Math.sqrt((x2-x1)**2+(y2-y1)**2)); } }[/code]

Member Avatar for oldSoftDev
0
69
Member Avatar for shimul_bari

Hello EveryBody, I am having problem in uploading servlets in my server. The servlet works fine in my locanhost. But when i upload it it does not work. Can anyone help?

Member Avatar for stephen84s
0
147
Member Avatar for nanna

hi, i suppose to make simulation to cellphone. when press any digit ,it should appears on the display textfield to form a complete number. and when press the send button a message with"redialling+ the gigits pressed" appears on the textfield also when press redial button a message with " redialling+ …

Member Avatar for stephen84s
0
172
Member Avatar for jktallio

Im trying to have put in a list of 10 CD's (with informatiom, not just blank ones) that will ready be in the list before the program even runs. I obviously am new to this, so i dont know what to do. Any help? THANKS! This is my program this …

Member Avatar for stephen84s
0
93
Member Avatar for lovely_aly

Hi there. As I said, I'm a newbie to programming and writing code. I'm at home working on a lab project but keep getting a compilation error and I don't know how to fix it. Any help would be greatly appreciated. Here's my code: public void add(int i) { int …

Member Avatar for lovely_aly
0
88
Member Avatar for BestJewSinceJC

I have to write a program that mimics a digital clock w/ seconds, minutes, and hours. I'm sure I can get the displays working on my own and everything. My concern: what is the most efficient way to check the time? Should I just do Thread.sleep for 1 second then …

Member Avatar for Ezzaral
0
121
Member Avatar for jls7168

I need to make a simple refresh button for a gui java program I have the button made I just am not sure what the code needs to be to make the button work. Any help would be really appreciated.

Member Avatar for jls7168
0
155
Member Avatar for Nollyvenon

how do i create java code that randomly assign numbers to letters, sum them, display them and store them in a database

Member Avatar for Ezzaral
0
94

The End.