| Thread | Last Post | Replies |
|
| Tool to remove inline imports | 20 May 2005 07:11 GMT | 17 |
do you know any tool which remove "inline imports", meaning going from this: javax.swing.JPanel jPanel = new javax.swing.JPanel(); to this: import javax.swing.JPanel;
|
| help on how to save/load this data structure? | 19 May 2005 23:50 GMT | 5 |
I am wondering if any suggestions on how to do the coding for this data structure and requirements: The story: 1) There are a large number of log data, which is line by line (text).
|
| Netscape 8 loads MS Java for archive, Sun otherwise | 19 May 2005 21:48 GMT | 3 |
Netscape's new 8.0 browser acts in ways that may be surprising. In its Internet Explorer mode on Windows with both Sun and MS JVMs installed, it will load a Java applet using the Sun VM. However, if the applet is available in both JAR and CAB files it will load the CAB file ...
|
| Kind of tamplating XML schema | 19 May 2005 20:58 GMT | 1 |
I have an XML schema which maxOccurs and minOccurs may changed based on some external settings.( This is why I set it via maxOccurs="$test.maxOccurs") <?xml version="1.0" encoding="UTF-8"?>
|
| nio ByteBuffer filling | 19 May 2005 20:26 GMT | 3 |
I have a situation with ByteBuffers and i was wondering what the best way is to do what i want : - ByteBuffer A is 128 bytes large - ByteBuffer B is much larger
|
| monday as first day of the week | 19 May 2005 20:09 GMT | 4 |
I'm having trouble to tell JAVA that monday is the first day of the week and not sunday. This is what I have at the moment Calendar time; time = Calendar.getInstance();
|
| Make an exe in java | 19 May 2005 20:03 GMT | 3 |
I have one problem.I have created one application in Java.How to make an exe of the application-or project? In visual basic we can create an exe [create setup] of any vb-project.Is there any solution in java which does the same thing?
|
| JUnit problem with Eclipse3.1M7 | 19 May 2005 18:50 GMT | 1 |
I am using Eclipse 3.1M7 with some plugins and I cannot start any JUnit test anymore. I got this error when I start any JUnit test: java.lang.NoClassDefFoundError: com/ibm/crypto/provider/IBMJCA (wrong name: org/eclipse/jdt/internal/junit/runner/RemoteTestRunner)
|
| how to connect a chat applet to the server | 19 May 2005 18:49 GMT | 2 |
I have just started dabbling in applets and as a practise am trying to develop a chat server and client. I am confused which technology to use. I want it to be able to support a large number of users. On searching i found three different ways to make the connection between
|
| How long would you quote? | 19 May 2005 18:03 GMT | 6 |
How long would you quote to write a java pac-man game for mobile phones (graphics supplied)? Not 3D, just classic 2D pac-man. Alternatively, how much would you charge ? I'm fairly new to freelancing so am still trying to develop a feel for
|
| Forcing swing gui to be drawn | 19 May 2005 17:59 GMT | 3 |
Hey, right now I have a program that analyzes an EKG when a button is clicked. I want to pop up a progress bar in a new frame to show how far it is, but I'm having problems. I can create the frame, and it will appear, but it won't draw the progress bar until it is done executing
|
| JAXB and IdRef | 19 May 2005 17:56 GMT | 3 |
I'm new to Sun's JAXB and I having a problem unmarshalling an XML attribute of type IdRef. When I try to print it out I get a reference to the object rather than the value of the attribute. Something like "com.kbilly.cmm.jaxb.cmi.impl.ProductElementImpl@9a8a68"
|
| JARs containing JARs | 19 May 2005 17:53 GMT | 5 |
Is it possible to create a jar that contains its dependant jars so that you can distrbute an application as a single jar? -- Alan Gutierrez - alan@engrm.com
|
| Test or NullPointerException catch | 19 May 2005 17:47 GMT | 8 |
I'm developing a webapplication in Java. If I fetch a lot of objects from the session or request, and they all could be null, should I test them all separate with if statements, or should I just try what I want to do with them en catch a
|
| "Streaming"/Pushing real-time simulation data to client accross internet | 19 May 2005 17:22 GMT | 1 |
I'm writing an application that generates (real time) data from a simulation that is being run. I want to "stream" the data to the client (a fat client - GUI) accross the internet, which then processes the received data (carries out statistical analysis - entropy etc).
|