| Thread | Last Post | Replies |
|
| What are OOP's Jargons and Complexities? | 07 Jun 2005 19:04 GMT | 56 |
What are OOP's Jargons and Complexities Xah Lee, 20050128 The Rise of Classes, Methods, Objects In computer languages, often a function definition looks like this:
|
| Understanding java error output - related to the sun app server PE 8.1 | 07 Jun 2005 17:28 GMT | 1 |
I hope members think this is a proper place to ask this question. It is true that it relates to sun app server but more importantly it deals with reading java log output and synthesize it properly to troubleshoot the problem.
|
| What do people think are the best and worst examples of use of exceptions in the body of Java software? | 07 Jun 2005 16:41 GMT | 1 |
What do people think are best and worst examples of use of exceptions in the Java software today? Throwing as well as handling. Caught as well as uncaught. Are there any good guidelines/best practices/patterns for when to throw
|
| decompiling class, jar & native executables? | 07 Jun 2005 16:15 GMT | 1 |
I an rather new to java programming and just found out that compiled java class and jar files can be easily decompiled to reveal the source code! Is it equally easy to decompile 'native' java code or, could making a
|
| resultSet is null | 07 Jun 2005 15:55 GMT | 2 |
i m working in jsp and i m executing a query like : String var="select * from reservation where starting_time='"+i+"' and allocation_no='"+j+"'"; ResultSet rs = st1.executeQuery(var);
|
| need to implement a proxy gateway in Java | 07 Jun 2005 15:07 GMT | 3 |
...I need to build a daemon that will forward HTTP Requests, trap the response, manipulate it and send it on to the client. Where do I start looking? Thanks
|
| the right way to detect encoding used in InputStream carrying HTML or XML | 07 Jun 2005 15:02 GMT | 7 |
Suppose you are faced with an java.io.InputStream and it is supposed to carry either HTML or XML. Ultimately you want to read with a Reader and the correct encoding, of course.
|
| don't completely get it with JMS ... | 07 Jun 2005 12:50 GMT | 1 |
After reading several introductory examples of implementing applications using WebSphere MQ and trying to match with the definitions of the JMS terminology in e.g. JMS Oreilly I don't get yet how the JMS objects correspond to the
|
| signing (again) | 07 Jun 2005 12:34 GMT | 1 |
Is there anyway to test the JCE by signing my own JAR without sending off to a CA? I thought creating a keystore, exporting a key, importing it to cacerts, singing and running would work, but I was wrong, the JCE needs a certificate chain. Any ideas? This is only for testing, so I
|
| New in Java.. | 07 Jun 2005 10:13 GMT | 10 |
Hi there... I'm learning java and a Friend told me to subscribe this list. Then i'll be arround asking you so much.... and meaby some day can help. Thanks.
|
| get svn version | 07 Jun 2005 09:39 GMT | 7 |
Does anybody can help me in this problem? I have a java project under subversion (I access it from eclipse by subclipse). I would like that every time I commit some changes (and so the version number increase) a properties file should be modified with
|
| java e fax | 07 Jun 2005 09:11 GMT | 3 |
I have to make a software to send fax. Can I use Java commapi and AT commands? Where can I find AT commands to send fax? Can I send a bytes stream (the fax) to modem?
|
| Thread and wait simple question | 07 Jun 2005 06:56 GMT | 6 |
Hi group. I am trying to learn how to make a thread wait until another thread terminates. I have created a simple example that compiles and runs (please see at
|
| Struts - Creating a generic lookup page - help | 07 Jun 2005 05:50 GMT | 1 |
I'm using Struts 1.2, and I'm having difficulty creating a lookup page that can be accessed from a series of other pages. For example, given a typical employee tracking system, when entering a new employee's information, I will be entering their name, phone, and
|
| How can I get the primitive type from an Object provided it isPrimitive. | 07 Jun 2005 05:46 GMT | 5 |
I'd like to be able to the Class int.class, boolean.class, etc., as the case maybe, given an object which may or maynot be of primitive type. I can ofcourse check if the object isPrimitive, but from what I can see the only way to get the primitive Class type of an object is through
|