Description:
Programming in the Java language.
|
|
|
Basic question about compiling
|
| |
I know this is kind of basic but somehow the solution escapes me.
I have the applet which is supposed to hook up with the hardware
attach to the computer. The hook-up interface is available in the
external JAR archive called sbsdk.jar. So, I compile the applet with
the following command:
javac -d %DST% ^... more »
|
|
Question about Effective Java
|
| |
I'm trying to understand the example on page 14 of Effective Java by Joshua Bloch (Second Edition). I hope someone here can help.
Here's the code from the book for the sake of those who don't have the book (or the same edition of the book):
============================== ============================== ===========... more »
|
|
Agile Project Management
|
| |
Agile software development is an iterative, incremental approach to
developing and releasing software. A range of agile methodologies have
emerged and they are based frequent releases, ongoing testing,
customer and stakeholder participation throughout the development
process, co-ownership of code and pair-programming.... more »
|
|
200 Java Books
|
| |
Hi Frds,
I saw a book store in one site it seems good they are provided huge
amount of java books regarding
core java ,servlets, jsp,and ejb ,structs,spring,and all java tools
books
[link]
Regards:
Chamu
|
|
Dynamic method invocation on Proxy object?
|
| |
How can I dynamically invoke a method on a Proxy, where the method belongs to one of the proxied interfaces?
Normally (i. e. in the non-proxy case), one would do something like this:
protected Object invokeDelegated( Method m, Object[] args,
Object delegate ) throws Exception... more »
|
|
packaging selenium code as jar
|
| |
I need to package my selenium script (exported as JUnit4 test) as jar
file to be used by some third party application.
Is such a thing supported? If yes, how can this be done and how would
the manifest file look like?
|
|
|