35,619 Topics

Member Avatar for
Member Avatar for DallasFan3

Right now Iam writing a program that will convert english into piglatin. Ans I have pretty much finished the program, but Iam stuck and need help. When I run the program, nothing happens after I type in the users input. What am I doing wrong. Heres my code, [code]import java.util.Scanner; …

Member Avatar for kezkez
0
1K
Member Avatar for CompSci_Guy

My question is... what is the int times for? i dont understand what i am supposed to do with it. Here are the instructions about this method: String[] generate(String symbol, int times) In this method you should use the grammar to randomly generate the given number of occurrences of the …

Member Avatar for Taywin
-1
1K
Member Avatar for jems5

I am writing a program that reads text but must ignore case, spaces and punctuation while evaluating a string for palindrome. When I use the following the case issue is solved. [CODE] String str = ""; if (str.toLowerCase().charAt(LHS) != str.toLowerCase().charAt(RHS)) [/CODE] ...but when I use the following I get IndexOutOfBoundsException …

Member Avatar for jems5
0
3K
Member Avatar for Awesomeness

I have an application I'm making... And it has a canvas in it. The problem is, on the y axis, my canvas is offset by ten pixels downward and I can't figure out why. You can see what I'm talking about in the screenshot. Do you know what's wrong?

Member Avatar for Awesomeness
0
119
Member Avatar for 123a

Hi, i only know the Java basics and really need help! I have a class called temporaryHolder which holds an arrayList of 54 cards. However, I need to get elements out of this arraylist and need to add them to stacks in another class. Q1) How can I access all …

Member Avatar for 123a
0
77
Member Avatar for LianaN

Hi! I've decided to open a new thread for discussing the problem with uploading a file to a SUB-FOLDER at the FTP Server. So, I'm using Apache Commons library and I can upload my file to the Home Directory of the FTP server. However, if I want to upload it …

Member Avatar for LianaN
0
1K
Member Avatar for o0oKodako0o

I have this problem when i create a sortable JTable with data load from an ArrayList! My project is Student Management and i add some function like Add/Edit/Delete infomation. With unsortable JTable, add/edit/delete function is ok, but with sortable JTable, when i click on the header of one column, that …

Member Avatar for peter_budo
0
53
Member Avatar for nichu

i am doing a desktop application using netbean6.8 how to show error message if i didnt enter mobile number textbox pls help me....

Member Avatar for apines
0
92
Member Avatar for Donnovan

Hi everyone, how do i push item with a givin index in a linkedlist. e.g. linkedlist.add(element e, int index); this is my function [CODE]public void push(Student s, int index){ if(isEmpty()){ start = s; }else{ last.next = s; } last = s; size++; }[/CODE]

Member Avatar for Donnovan
0
100
Member Avatar for LianaN

Hi! I would like to develop a software that will allow me to find a file (using JFileChooser) on a local machine and save it to a remote machine. I know an IP address of the remote machine. Please, give me some explanations or a link to some tutorials regarding …

Member Avatar for LianaN
0
3K
Member Avatar for Buffalo101

I want to set up a connection to a Microsoft SQL Server 2005 express on my PC. [code=java] try { Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); Connection con = DriverManager.getConnection( "jdbc:mysql://localhost/db1","xxxx","yyyy"); Statement stmt = con.createStatement(); ResultSet rs = stmt.executeQuery("SELECT nume FROM tabel1"); while (rs.next()) { String s = rs.getString("name"); textArea.append(s); } } // Catches any …

Member Avatar for Buffalo101
0
249
Member Avatar for mangopearapples

Is there anyway to play an mp3 file in java? P.S I'm new here, hello world?

Member Avatar for mangopearapples
0
170
Member Avatar for purijatin

The problem is that when we use multiple threads and each containing System.out.println(). It doesnt print at time according to what i think it shoud On implementing the below 2 codes: [CODE] import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.SocketException; import java.util.concurrent.LinkedBlockingQueue; import java.util.logging.Level; import java.util.logging.Logger; class E { LinkedBlockingQueue<DatagramPacket> li = …

Member Avatar for purijatin
0
234
Member Avatar for ceyesuma

Hi. I can't figure out how to remove an element from an array. will I have to move get the element to be removed and swap it out with the last element and use the pop()?

Member Avatar for ceyesuma
0
317
Member Avatar for birdlover2010

Hello, I am a current Java student and am having a problem when I run my compiled program from an in chapter lab assignment called "Stock Tracker". I receive a message from a dialog box "Cannot locate sun.jdbc.odbc.jbcOdbc Driver. Class not found exception creating database object. Following are a list …

Member Avatar for ~s.o.s~
0
273
Member Avatar for AlvinLiu

[CODE] public class Reservation { private String firstname; private String lastname; private String address; private String name; private int licenseN; private String date; private int daysN; private String type; public Reservation(String f,String l,String a,int lpn,String dt,int nd,String tp) { firstname = f; lastname = l; address = a; licenseN = …

Member Avatar for AlvinLiu
0
2K
Member Avatar for rfencl

Hi, I have a jsp web application running in Tomcat 6 that uses a set of 3rd party jars. One of the jars is attempting to load a log4j property file by using a relative path. ( \folder\.properties) I have the property file but I need to know where to …

0
113
Member Avatar for Barnifericus

Ok so Im trying to create a constructor that reads input from a text file. Which I got it to do. Then adds the information to a LinkedList. [CODE] public class CourseCatalog<T> { private BufferedReader read; private LinkedList<Course> catalog; public CourseCatalog(String filename) throws FileNotFoundException { catalog = new LinkedList<Course>(); try …

Member Avatar for jon.kiparsky
0
114
Member Avatar for nope3d

Can anybody help me how to transfer the inputting of my numbers from left to right... Well here is my program.. [code] import java.awt.*; import java.awt.Container; import java.awt.GridLayout; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; import javax.swing.JButton; import javax.swing.JFrame; import javax.swing.JPanel; import javax.swing.JTextField; public class Calculator2 extends JPanel implements …

Member Avatar for Nishkalank
0
200
Member Avatar for compe_dsd

Hi! I have a project in school about a grocery list...can someone help me make a code for this? I really need it....thank you so much! here's the problem: This application is called the “DAWLIMs Grocery Store”. The team has closed a contract deal to develop an application of a …

Member Avatar for compe_dsd
-1
200
Member Avatar for Awesomeness

I have a tree, and I want to find the depth of it. For example for this tree: [CODE]0 root / \ 1 5 1 / \ 2 1 3 | 3 2[/CODE] It should give a depth of 3. [CODE] public int getDepth() { int maxDepth = 0; if(this.hasChildren()) …

Member Avatar for Awesomeness
0
112
Member Avatar for SomeNewGuy

Okay so I have to have write a program that takes website names until you type stop. After that it should count how many websites were entered. [CODE]package website; /** * * @author */ import java.*; import java.util.Scanner; public class Main { /** * @param args the command line arguments …

Member Avatar for kramerd
0
112
Member Avatar for Haile12

Does anyone know how to hack passwords, like Facebook or email through Java?

Member Avatar for peter_budo
-2
92
Member Avatar for mole363

Hello there, I am trying to develop a web site and I am asking this: Let's say that I own [url]www.mydomain.com[/url]. Now if I type [url]www.mydomain.com/whatever[/url] I want this site to be linked to [url]www.mydomain.com[/url] and pass the string "whatever" as a parameter. So If I type [url]www.mydomain.com/john[/url] the website …

Member Avatar for Brillig
0
130
Member Avatar for plasticfood

[CODE]public double returnTotalFine(){ if (parkingmeter.returnPurchasedMins() >= parkedcar.returnMinsParked()){ fine = 0; } else if (parkingmeter.returnPurchasedMins() - parkedcar.returnMinsParked() <= 60){ fine = 25; } else{ fine = (25 + (10 * (parkedcar.returnMinsParked() / 60.0))); } return fine; } [/CODE] this is the toString method from the same class as above: [CODE]public String …

Member Avatar for plasticfood
0
59
Member Avatar for sravan953

Here's the pattern: [CODE]******* ***** *** * ** *** ***** ********[/CODE] Here's the code I used to get only the first part(the up-side down triangle): [CODE] class hourglass { static void pattern() { for(int j=1;j<=4;j++) { for(int i=1;i<=j;i++) { System.out.print(" "); } for(int i=7;i>j;i--) { System.out.print("*"); } System.out.println(); } } …

Member Avatar for Ezzaral
0
696
Member Avatar for shou2009

Hi, I am using Eclipse Helios in Fedora 10 i386. I am using WebSphere Application Server Community Edition plugin [B][COLOR="red"][COLOR="Red"]( Apache Geronimo 2.1)[/COLOR][/COLOR][/B] in Eclipse. My problem is that , I can not upload a file using [B][COLOR="red"][COLOR="red"][COLOR="Red"]UploadBean ( a very popular JavaBean )[/COLOR][/COLOR][/COLOR][/B]. I am adding the jar files …

0
46
Member Avatar for someone5

Hi, I wanted to know how you can link two list Boxes together. This is what I'm trying to do: [B]I'm creating two list boxes, list box A and list Box B. List Box A is a list of different departments. When the user clicks on a particular department, the …

Member Avatar for someone5
0
203
Member Avatar for Dhruv Gairola

hey guys, just one question- how do i get netbeans to import a whole folder (containing numerous java files)? the only option i currently get is to import eclipse projects.

Member Avatar for Dhruv Gairola
0
137
Member Avatar for vbx_wx

[code] package cls; public class main34 { public static void main(String[] args) { for(int i = 2; i <= 100; i++) { for(int j = 2; j <= i; j++) { if(i % j == 0) { break; } else { System.out.println(i + " "); } } } } } …

Member Avatar for apines
0
86

The End.