[Commons Configuration] specify a regular expression as string property125 (4/18/2004 10:10:49 AM) Hello, I am using Jakarta Commons Configuration. I have specified the following as a property: first.name.pattern=.{0,30} String pattern = config.getString ("first.name.pattern"); fails because the propert... mail1935(1)
Debugging with EclipseME and SunWTK21214 (4/21/2004 6:00:18 PM) Hi! For weeks I'm not trying to get a debugger running on that application I develop. I tried a lot with the Sun WTK and Eclipse 2.1.x but it did not work out. Finally I got EclipseME working in Eclipse 3M8 and... ar651(7)
TreeMap - getting values out in the order they went in?227 (4/22/2004 7:20:52 AM) Hi I am using a TreeMap to store keys with each key referring to an Arraylist of values. However perhaps a TreeMap is not quite the right thing to use as it is very important that when I use an iterator to re... hugo18(20)
JBoss, PostgreSQL, XDoclet, Serial primary keys in CMP218 (4/21/2004 8:37:41 PM) I'm trying to get a simple container managed bean to work with JBoss 3.2, PostgreSQL and Container Managed Persistence. I thought it would be a good learning excercise. I wonder what techniques other people on ... rcnews2(30)
Jsp can not found param in included file121 (4/21/2004 7:44:30 PM) I am using tomcat 5.0. Here is my test.jsp file .... .... here i smy para.html But when I run http://localhost:8080/myjsp... homecurr(34)
Client Code for Axis - Newbie Question317 (12/17/2003 6:10:57 PM) Hi, I'm a first time Axis 1.1 user and trying to figure out how to write web services client code. I used WSDL2JAVA to create java source from the wsdl. I ended up with the following files... xxxx_Port.java... daycoder(1)
How do I make an aggregation relationship in Java332 (4/21/2004 11:15:20 AM) I have two classes. Player.java and Team.java I want to make Player a member of Team. how do you do this? I tried putting Player p1 = new Player(); in Team but Visual Paradigm (when asked to generate a class d... follow_me_69_au(9)
dispatch in a jsp423 (4/20/2004 10:37:31 PM) In my jsp, I want to check the parameter. If it is not good, I would like to dispatch to a differ page. Here is my jsp file <% String para = request.getParameter("p"); if (para == null){ getServ... homecurr(34)
Compiling and classpath124 (4/21/2004 11:17:48 PM) I have two different programmes and I compile them thus with no problem: 1) javac -classpath googleapi.jar Search.java and 2) javac -classpath jodd.datetime; TestDate.java (this file has 'import jodd.datetime... finney
Double Buffering Doesn't Help My Flickering029 (4/22/2004 2:01:31 AM) Hello Everyone, I am practicing some Java animation, and I thought I'd start with an Applet that displays scrolling headlines. Everything works, except, I have the dreaded flickering problem. I've overridden... bryan.r.meyer(18)