35,618 Topics

Member Avatar for
Member Avatar for vinutha1309

Hi I am doing a Messenger Project where i have to add send file feature also without using Internet i am trying through FTP .In control Panel from adminstrative tools i opened IIS in that default FTP->properties->security accounts there is a default password,which i cannot change.So plz help me in …

Member Avatar for jwenting
0
63
Member Avatar for alexasmith

I am in a beginners java class and I have an assignment that is really difficult (for me). the assignment is to prompt the user to enter a person's full name in the order: first middle last. Output will include: the prompt the original name the name in the form …

Member Avatar for peter_budo
0
145
Member Avatar for volscolts16

In this experiment, people take turns playing and you can delete or add players, Seem to have a couple of issues left, not sure how to work out. One of the problems is the display, the other is a class interface. Need any help or suggestions I can get. Thank …

Member Avatar for Ezzaral
0
290
Member Avatar for restrooms

Pls Help Me On Doing My Project. A Simple Game Using Java And I Need The Program. As Soon As Possible Thanks A Lot For Who Can Help Me.

Member Avatar for Ezzaral
0
73
Member Avatar for dkdeleon68

I need to Modify the Inventory Program by adding a button to the GUI that allows the user to move to the first item, the previous item, the next item, and the last item in the inventory. If the first item is displayed and the user clicks on the Previous …

Member Avatar for Ezzaral
0
629
Member Avatar for woopsor

I am new to JSP and am having trouble with an if statement. [code=jsp] <c:if test="#{authorizedProduct.product.product.orderMethod}=='H'"> <h:outputText id="orderMethod" value="#{authorizedProduct.product.product.orderMethod}"/> </c:if> [/code] The order method does equal H because it will display that if I don't put in inside the if statement. Can someone help me with my if statement syntax …

Member Avatar for woopsor
0
67
Member Avatar for cmymazda

Hello, I am trying to figure out how to correct my errors. I am new at this and this is due today. The actual assignment is .... Modify the Inventory Program to include an Add button, a Delete button, and a Modify button on the GUI. These buttons should allow …

Member Avatar for peter_budo
0
139
Member Avatar for jyovasinedu
Member Avatar for swarnamalya
Member Avatar for slook143

please help me to make a program of a puzzle game.... could you help me......

Member Avatar for schoolsoluction
0
66
Member Avatar for pawan_1983

i am creating chat application .can anybody tell me how can i know who is on line on the server and how can i communicate with on line members. thanks for help

Member Avatar for jwenting
0
191
Member Avatar for louise07

[COLOR=Green][B]need help with my java calculator, about the key listener. its allows me to input using keyboard. but the answers are always "ERROR".. but when i try to use the mouse. it works fine. having problem with the keylistener. please help CALC [/B][/COLOR][code] import java.awt.*; import java.awt.event.*; import javax.swing.*; import …

Member Avatar for louise07
0
239
Member Avatar for ivatanako

[code] import java.io.*; public class myFLAMES { public static void main(String args[]) throws Exception { DataInputStream input=new DataInputStream(System.in); int ctr=0; /* ask for inputs */ System.out.println("Input your name: "); String name = input.readLine(); System.out.println("Input her name: "); String sname = input.readLine(); /* hard part -PROCESSING!!!! */ /* we need to …

Member Avatar for nschessnerd
0
116
Member Avatar for countrygirl1970

I am now taking Java classes and I have worked this program out, but it is giving me a "illegal start of type" on my code and I do not know why please help. Thanks for your help. [code] // Displaying multiple strings import javax.swing.*; // to use JOptionPane.show InputDialog …

Member Avatar for nschessnerd
0
132
Member Avatar for KimJack

Hello All, I have a text file that I am trying to query. The text file is as follows: Billy Bob, Manager, 23453, 76789 Sharon Smith, Supervisor, 33789, 98098 Sue Johnson, Supervisor, 33790, 98095 John clover, Director, 33791, 99876 Desie Arnaz, Worker, 40078, 97656... I am wondering how can I …

Member Avatar for mickinator
0
124
Member Avatar for lunatica

Hello...can someone just give me a hint or steps how to trap numbers in String Like in names.I have to make my project in java with traping numbers in names..

Member Avatar for cms271828
0
66
Member Avatar for himanjim

I've got a project to design a chat client in java applets....I've got a way around to implement it but that may be bit an inefficient I've got a client code that communicates with a server program (both in java).Only one client can communicate with server that one time and …

Member Avatar for Ezzaral
0
126
Member Avatar for tinamary

in abstract class the methods may or may not be implemented, when we implement the methods in the abstract class, then why cant we instantiate objects in for the abstract class. is it mandatory that the objects are not instantiated in abstract class. can anyone tell me the internal working …

Member Avatar for Ezzaral
0
89
Member Avatar for vicky_dev

Hi everyone, I need to be able to run a Java application (not an applet) directly, that is not from an IDE or the command line. How can this be done for a Windows PC? I have seen many applications written in Java, but are executed just like other Windows …

Member Avatar for vicky_dev
0
2K
Member Avatar for iCez

uhmmm.. we have this project, we were told to make an [B]output[/B].. [B]"A multiplication table" [/B]I know that you guys don't don't give help if we don't give it a try. It's just that I don't know how to make one or even to start it. Can I just ask …

Member Avatar for louise07
0
94
Member Avatar for ceyesuma

If there is a file created and stored in a class: [code] void setLogFile(File LogFile){ this.LogFile=LogFile; } File getLogFile(){ return LogFile; } [/code] and the FormattedWriter is created in another class and it's constructor calls super. Why won't this work? [code] FormattedWriter out = new FormattedWriter(new FileWriter(getLogFile(),true)); [/code]

Member Avatar for ceyesuma
0
68
Member Avatar for balagangadharm

Can anyone help me how to develop forums.Any related urls and content or code sothat i can develop my own using jsps and mysql..plz urgent iam new to this...

Member Avatar for peter_budo
0
105
Member Avatar for balagangadharm

Can any one help me in generating a billing report in java without using any reporting tool. I should get the header, footer and pagebreaks.If the billing takes two pages then header should cum in first page and footer in last page..please help me I would be favourable for u …

Member Avatar for masijade
0
75
Member Avatar for Caled

Hi, Im having a problem here. I have 3 classes/frames. After arriving at the 3rd frame, i want to get values entered in the 1st first frame. All the variables in the 1st class are declared as Private. In order for me to get this value from other class, i …

Member Avatar for Caled
0
187
Member Avatar for IT Lover

Dynamic GUI Hello people... really I dont know if this is the correct name (Dynamic GUI) but I wanna ask u how to build dynamic JButtons .. 4 example : the number of the buttons in a frame not static ... (user enter it) at the begging and the buttons …

Member Avatar for IT Lover
0
118
Member Avatar for KimJack

Hi All, I am trying to parse an xml file. Not using any of the regex or parsers, simply using only java code. Any suggestions? Thanks

Member Avatar for iamthwee
0
91
Member Avatar for balagangadharm

can any one help me out. When I take a print,the path of the document is printin at the bootom of the page.Can anyone say how to remoe it while printing It is printing as file://C:\Documents and Setting\administrator\etc... But, I don't want to print the 1. link path ex. file://C:\Documents …

Member Avatar for balagangadharm
0
96
Member Avatar for Acidburn

Hello there, I'm trying to emulate a Bluetooth connection via coding the serial port. COM6 on my machine is an outgoing connection over bluetooth... So I'm mocked up the following code: [code] package btserver1; import gnu.io.CommDriver; import gnu.io.CommPort; import gnu.io.CommPortIdentifier; import gnu.io.SerialPort; import java.io.*; public class Main { static String …

0
62
Member Avatar for kararu

Hi all, I am good in Java.But I dont have any idea about PHP. With this matter in mind please suggest me which to choose(PHP or JSP) to create my own forum. (coding my own forum..not using exixting freeware forum).... What are the pros and cons of using JSP.(I dont …

Member Avatar for jwenting
0
192
Member Avatar for awo

am still hoping on some thing, the reason for the project password authentication without data base is to circumvent the security issue of password verifier being stolen on the server which can still make the adversary to implicate a rightful user i have an idea but the only problem i …

Member Avatar for jwenting
0
140

The End.