35,618 Topics

Member Avatar for
Member Avatar for KimJack

Hello All, I am trying to parse an ArrayList of Strings into an ArrayList of integers. Does anyone have any opinions on how this should be done? I can parse one element, but parsing the entire string where I am having problems. Any suggestions would be great. Thanks

Member Avatar for KimJack
0
100
Member Avatar for kotigadu
Member Avatar for Ezzaral
0
28
Member Avatar for komox

Good evening everyone. Im now going to do my final year project and its about creating mobile application for a university student.I would like to use the java platform to create the application. I need some advises and also the right tools to create the application. So programmers i really …

Member Avatar for Ezzaral
0
100
Member Avatar for ajcornwell

I cannot make my code loop.... Anyone please help! /* PRG420 Week 2 Individual Project Amanda Cornwell September 10, 2007 MortgageProgramCornwell.java This program will calculate and display the monthly mortgage payment amount, given the amount of the mortgage, term of the mortgage, and the intrest rate of the mortgage. Next, …

Member Avatar for orko
0
146
Member Avatar for sarath.koiloth

Hi, i want to get an xml file from a web application. what are the procedures to access the file.

Member Avatar for sarath.koiloth
0
143
Member Avatar for doreigon

This is a lab I am working on. I think that I am on the last step. My problem/question is highlighted in bold. 1. Create a constructor that allows you to specify the 2 endpoints of the line being created. Leave the original constructor alone. Your program should have 2 …

Member Avatar for doreigon
0
593
Member Avatar for vinod_javas

hi everyone i have a very a very basic question in mind .. i wanted to discuss .. Difference Between these? String s1= new String("java") ; String s2="java" ; and also what for 2 different classes are there in garbage collection? System.gc and runtime.gc ( both are doing the same …

Member Avatar for vinod_javas
1
144
Member Avatar for 9Mark9

Hello all just signed up and this is first thread.I am currently learning java and as a means to this i am writing the mastermind game in java.Can anyone point me in the right direction regarding getting the board facr on the grid and manipulating it. cheers

Member Avatar for iamthwee
0
117
Member Avatar for rohit83.ken
Member Avatar for iamthwee
0
68
Member Avatar for volscolts16

I having a small problem with the output on the Your CD's side, they are only viewable if I double click inside the pane, then they show up, almost like the pane is on top. How can I fix, I have tried moving things around and changing the TextArea to …

Member Avatar for volscolts16
0
579
Member Avatar for KimJack

Can anyone provide any suggestions on how to copy an ArrayList of integers to an Array? Thank you

Member Avatar for masijade
0
93
Member Avatar for bdichiara

I am new to JSP and struggling with this issue. I created a Hello World page and worked fine. After I made some changes, I uploaded the new version of my index file several times. I have even deleted my index.jsp file from the server, along with the WEB-INF and …

Member Avatar for ksaxena
0
118
Member Avatar for MonkeyGarage

Search.java: [code] package com.monkeygarage.carclubhub.clubinfo; import java.sql.ResultSet; import java.sql.SQLException; import java.util.logging.Logger; import com.monkeygarage.DBConnect; import java.util.logging.Level; import java.util.*; public class Search { private List<SearchResults> list = new ArrayList<SearchResults>(); DBConnect db = new DBConnect(); public Iterator getResult() { Result(); return list.iterator(); } private void Result() { try { ResultSet rs = db.getResult("SELECT club.clubId, …

Member Avatar for MonkeyGarage
0
156
Member Avatar for MonkeyGarage

Any idea? I get this error: org.apache.jasper.JasperException: An exception occurred processing JSP page /test2.jsp at line 7 4: <title>DB Test</title> 5: </head><body> 6: <% DBConnect d = new DBConnect(); 7: ResultSet rs = d.getResult("SELECT name FROM items"); 8: 9: while (rs.next()) { 10: String name = rs.getString("name"); Stacktrace: org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:524) org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:435) …

Member Avatar for MonkeyGarage
0
113
Member Avatar for abar_sow

For my proje i want to remove a unwanted paragraph in a text file. For example my text file may have acknowledgment in between sum useful data so i want to remove the acknowledgment paragraph fully...can anyone tel how to do tat

Member Avatar for Ezzaral
0
104
Member Avatar for a51himself

Hi i am having trouble with a html web page. I am trying to add a Java chat program to my web page. Can i please get some advice Thanks A51himself Nigel Chan

0
46
Member Avatar for George2

Hello everyone, I am wondering if I want to debug JNI application (upper layer Java and lower layer C), are there any tools to debug through Java code to C code and return back from C code to Java code. I am using Eclipse. But I do not find such …

Member Avatar for vvl
0
143
Member Avatar for KimJack

Hello all, I have a text file with columns of words Boat Car Van Sue Bird Hue Billy Don Yoe... How do I read each separate column into separate arrays. Array 1 will read: Boat Sue Billy Array 2 will read: Car Bird Don... Any suggestions on how to accomplish …

Member Avatar for KimJack
0
121
Member Avatar for bluebird

Hello! I am trying to add new data into a database. What is the mistake in my code? I got the error message such as "general error". [code] import java.awt.*; import java.awt.event.*; import java.sql.*; import javax.swing.*; public class AddRecord implements ActionListener{ private ScrollingPanel fields; private JTextArea output; private Connection connection; …

Member Avatar for masijade
0
108
Member Avatar for Rashul

Hi. Please help. I can't seem to get this program to run. Tips.java Modify the exercise shown below so that it will loop, calculating a new tip each time until the user enters a value zero or smaller for the amount of the bill. Make sure there is a nice …

Member Avatar for Rashul
0
103
Member Avatar for ceyesuma

[code] public static Connection getConnection(){ if(connection==null){ try{ Class.forName("org.gjt.mm.mysql.Driver"); connection=DriverManager.getConnection("jdbc:mysql://localhost:8084","root","ceyesuma"); }catch(Exception exc){ connection=null;} } return connection; } [/code] Here is the bean to get connected. Should this work? [code] package db; import java.sql.*; import java.sql.DriverManager; import java.sql.Connection; /** * * @author James */ public class DBConnection { static String dbdriver; static …

Member Avatar for ceyesuma
0
131
Member Avatar for ceyesuma

I made more progress ong CreditCard program I am trying to insert a row into mysql from a creditcard account number. Could I get some feed back on why it as a problem with the url it looks like it wants to insert a record. [code] package creditcard; import db.DBConnection; …

0
52
Member Avatar for kohuke

I have a program that will find the certain ammount of fibonacci numbers. And now i have the question which is the best code for counting time in fibonacci algorithm? I have to find out how many numbers can my algorithm count in 1 minute? the code: [code]//rekursiivne algoritm public …

Member Avatar for kohuke
0
153
Member Avatar for ceyesuma

Can someone give me pointers on what needs to be done to get these classes to INSERT INTO acctData VALUES (99999999, '2000-7-3',30,'food',50); a deploy.txt is included containing the following. thanks [code] package creditcard; import db.DBConnection; import java.lang.Object.*; import java.io.*; import java.sql.*; import java.util.Date; import tio.*; import java.io.File.*; import java.io.IOException; class …

0
45
Member Avatar for MxDev

hi guys, i wonna to code simple program that could control the system threads in the system by block or start a new job, how to do this in java, or from where i can start to acheive this. thx,

Member Avatar for ksaxena
0
77
Member Avatar for alsoumhi

Exuse me gys, I am a biggener in java and I would like to know how to use the data file in java such as taking data from the file and printing the data in new file is there any class library carring out this task please reply to me

Member Avatar for darkagn
0
142
Member Avatar for Icetigris

Hey everyone. This is pretty lame of me having to do this, but I haven't done Java for about a year and this algorithms class I'm taking assumes we remember all the details. Anyway, I'm trying to implement a method from an interface in another class's main method. Here's the …

Member Avatar for jtonic
0
134
Member Avatar for mimsc

any suggestions...my "weatherState" value doesnt seem to be passing over: 1st jsp: [code]<% Vector theStates = WeatherDAO.getWeatherStates(); %> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Insert title here</title> </script> <body> <TR bgColor="#ffffff"><TD COLSPAN="2"> <TABLE CELLPADDING="3" CELLSPACING="2"> <TR><TD> </FONT></CENTER><BR> <BR> <TABLE BORDER="0" CELLSPACING="5" CELLPADDING="5" WIDTH="100%"> <TR BGCOLOR="#C0C0C0" ><TD COLSPAN="2" ALIGN="CENTER"> <FONT SIZE=+3><B> …

Member Avatar for aniseed
0
146
Member Avatar for activeap

i am working in a small company.. i want to make a setup of linux server, my sql server and working with java. please give me suggestions and requirements for these...

Member Avatar for aniseed
0
103
Member Avatar for ceyesuma

I would like to return a connection to a Bean to make statements to mysql database "ccdb" I'm really not sure of [code] public static Connection getConnection(){ if(connection==null){ try{ Class.forName("org.gjt.mm.mysql.Driver"); connection=DriverManager.getConnection("jdbc:mysql://localhost:8084","root","ceyesuma"); }catch(Exception exc){ connection=null;} } return connection; } [/code] Here is the bean to get connected. Should this work? [code] …

Member Avatar for ceyesuma
0
183

The End.