Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~190 People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

2 Posted Topics

Member Avatar for fango

[COLOR="Green"]Am Fango from Kenya. Am studying J2EE in college as well as training in Java with a Software development Company. Have always wanted to studying and work in software development industry. I hope having joined this forum i will be able to run more and get assistance wherever i get …

Member Avatar for maceman
0
27
Member Avatar for fango

[code=java]package jee5study.exercise.disboard.servlet; import java.io.*; import java.net.*; import java.util.*; import javax.servlet.*; public class Board implements servlet { private String SvName; private Date Started; public void init(ServletConfig config) { SvName = config.getServletName(); Started = new Date( (java.lang.System.currentTimeMillis())); System.out.println("Servlet: " + SvName); System.out.println(" Started: " + Started.toString()); } public void destroy() { Date …

Member Avatar for jenn11
0
163

The End.