Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #4K
~3K People Reached

14 Posted Topics

Member Avatar for cbarton.a

All, I have developed an application using RMI and am in need of help for the deployment of sed program as I have tried numerous different ways to release. Along those lines, I also am not too clear on the codebase and how to release to a [url]http://[I]hostname[/url][/I]:[I]port[/I]/[I]program_name[/I]. Here are …

0
89
Member Avatar for syed aamiruddin
Member Avatar for dj3hac
Member Avatar for StarZ
Member Avatar for kkcaddy

kkcaddy, I would do some research in the Swing package of java for the GUI components and with that goes some research into the different type of layout managers to place them. cbarton.a

Member Avatar for stultuske
0
89
Member Avatar for bertyhell

bertyhell, I love to use the GridBagLayout as often as I can for the control that it offers over the placement of the components, however in this case, I would have 2 panels, the Call and Date panels with the data inside the call panel either a GridLayout or (my …

Member Avatar for bertyhell
0
252
Member Avatar for Alerwi

[URL="http://www.sun.com/training/certification/java/scja.xml"]http://www.sun.com/training/certification/java/scja.xml [/URL] Has some information, as well as [URL="http://www.google.com/search?hl=en&source=hp&q=scja&aq=f&oq=&aqi=g3g-s1g1g-s1g4"]http://www.google.com/search?hl=en&source=hp&q=scja&aq=f&oq=&aqi=g3g-s1g1g-s1g4[/URL] does.

Member Avatar for tux4life
0
125
Member Avatar for dsmush

dsmush, For String comparisions use the equals() method. For example, [CODE] if ( validUsername.equals(username) && validPassword.equals(userpassword) ){ response.sendRedirect ("../register.html");[/CODE] cbarton.a

Member Avatar for cbarton.a
0
942
Member Avatar for browneyes123456

browneyes123456, I would use some regex and String class manipulations, read up on the API about the wonderful String class. cbarton.a

Member Avatar for cbarton.a
1
69
Member Avatar for nader_shadi2002

nader_shadi2002, You are correct in that we like you to attempt the problem and let us lead you to the light. Saying that you have tried many times at it is great news and makes you unlike most participants in the forums, however if you post some code we can …

Member Avatar for cbarton.a
0
94
Member Avatar for mahm240

mahm240, Please describe your problem in detail so we can assist you with it. From what I can gather you want just to monitor traffic over a network? Or do you want to monitor user modifications to a network system? cbarton.a

Member Avatar for cbarton.a
0
165
Member Avatar for eikal

eikal, You will want to instantiate a String to store the name you want to store the name in, after that do you will use your print code, then read it in using a Scanner's nextLine() method. [CODE]import java.util.Scanner; public class DaniProject{ public static void main(String [] args){ String name; …

Member Avatar for cbarton.a
0
90
Member Avatar for axn

Axn, I wouldn't sleep the Thread, I would use a timer to instance the events to fire a repaint(). Here is the working code with comments to help you learn what is going on: [CODE]import java.applet.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import javax.swing.Timer; public class DaniProject extends Applet { …

Member Avatar for cbarton.a
0
169
Member Avatar for RTHANGAVEL

RTHANGAVEL, I would not use the repaint() method to refresh the contents of the JFrame, I would use a pack() method to show and resize the window. After cleaning the code up a little, here is what I believe you are wanting with comments to help you understand what is …

Member Avatar for cbarton.a
0
125

The End.