| Thread | Last Post | Replies |
|
| newbee question | 19 Sep 2006 16:50 GMT | 1 |
Hi I am very new to Java, and am using jdev to get data from a oracle 9 db No problems so far but my question is that the data output is always in a output box, how / can I load this data into a variable to I can programmatically play with it
|
| stdin/stdout Redirection | 19 Sep 2006 16:45 GMT | 3 |
I dont know if anyone here can help or if I would be better going to a WIN32 group - but because its to do with the use of Java I hope in the correct place. I am planning on an app that allows other people exe's to communicate
|
| How to cast a String to an object reference? | 19 Sep 2006 15:50 GMT | 2 |
I have a Person class already. Now I have a String: public class Person() { void sayHello()
|
| Width of an image | 19 Sep 2006 14:55 GMT | 2 |
what is the easiest way to get the width of an image (png or jpg). I don't want to show the image or do anything else with it (I not even have a gui). It's just the width I need.
|
| Invoke Local System service through Web Client | 19 Sep 2006 14:22 GMT | 11 |
I have a requirement in my J2EE web application that the web client must be able to invoke local system service. Actually i want my web client to be able to print on a printer connected locally. I know the rule of web application is that it can not perform Files I/O with the
|
| Generics, factories and reflection | 19 Sep 2006 13:12 GMT | 1 |
I have a problem with a factory method. This method should create instances of the collection framework. The simplest implementation looks like this: --------------------------------------------------------------
|
| Generics and associative array of keys and diverse objects | 19 Sep 2006 12:42 GMT | 1 |
What is the right way to create a map from Strings to arbitrary and diverse objects? For example, so I can have: map.put("a", "text"); map.put("b", new Integer(2));
|
| ...inheritance and calling the grandchild not the childs implementation | 19 Sep 2006 11:10 GMT | 2 |
So I have (skipping some detail) the following: public abstract class BaseObject implements IObject { public abstract void setMethod(); }
|
| a modular design question | 19 Sep 2006 10:37 GMT | 9 |
I have a modular design(code-reusage) question. In order to make my point clear, I have made up the following fake situations: Last year in a project, I have written a class Person: class Person
|
| How do I convert an int to an enum? | 19 Sep 2006 10:22 GMT | 13 |
I have built a simple enum class for storing various known int return values from a particular method. It looks like this: public enum ReturnValue {
|
| instanceof strange behaviour | 19 Sep 2006 09:06 GMT | 5 |
I have a problem that consists of the following. In my class, I have a method named getNativePreparedStatement that receives a parameter of the type PreparedStatement: private PreparedStatement getNativePreparedStatement(PreparedStatement
|
| HttpURLConnection without waiting | 19 Sep 2006 09:01 GMT | 3 |
I need to connect to a servlet, because i want to send an http request with some parameters. This is the code: URL url = new URL("http://blahblahblah.com.../servlet?var1=value");
|
| Cleaning up - unused variables, classes, etc. | 19 Sep 2006 07:38 GMT | 9 |
I'm taking over a huge single-programmer project. I've poked around in the code and noticed a heap of unused variables, classes, routines - and now I'm looking for a way to automatically get rid of these, without having to sift through it all, line (many!) by line. Does
|
| Log4j output | 19 Sep 2006 02:23 GMT | 1 |
How is it possible for showing Log4j output into a dbSwing JTextArea component? Greetings, Hans
|
| Objects -- Instances vs. References | 19 Sep 2006 01:55 GMT | 11 |
I've had a few questions on objects, pointers, different instances and such before. I'm self taught and this is one aspect of OOP that has been the hardest for me to fully grasp. I think I've finally got the hang of it, because now I'm looking at objects differently.
|