| Thread | Last Post | Replies |
|
| Dom parsing with a attribute name with a number sign | 20 Sep 2006 10:42 GMT | 4 |
I am trying to parse some xml from a ArcIms service, and in the result xml, one of the attribute names contain a number sign, like #. When I trying to parse this xml I get the folowing exception: [Fatal Error] :1:49: Element type "FIELDS" must be followed by either
|
| new byte always initialized to 0? | 20 Sep 2006 09:46 GMT | 2 |
Consider the following code: byte b[] = new byte[34]; for (int x = 0; x < b.length; x++) {
|
| ann@etc-hk.com | 20 Sep 2006 09:37 GMT | 1 |
It's Jacky.... I guess this account and don't want to disturb with your work on the phone... so please reply if I bingo (according to Alan's account that is) Jacky
|
| Could you help on this reflection technique? | 20 Sep 2006 07:43 GMT | 13 |
I have a very simple GUI program: it has a menu and a text area(JTextArea). In the meu, it has several meu items: "save memo 1", "save memo 2", "get memo 1", "get memo 2", "clear", "exit". What the program does is: when the user types something and click "save memo 1",
|
| How to write min(a,b) instead of Math.min(a,b) | 20 Sep 2006 05:20 GMT | 3 |
I believe I had read somewhere how to do this but I cannot remember how to do it. I tried import java.lang.Math;
|
| JAR file runtime error caused by CLASSPATH | 20 Sep 2006 01:18 GMT | 1 |
I am having an absolute nightmare trying to get a JAR file that I built within Eclipse to run via a double click windows environment. I know that the problem relates back to my CLASSPATH but I am having no luck at all resolving the issue.
|
| running a class which use an external.jar | 19 Sep 2006 23:01 GMT | 2 |
I have a class called myclass.class which is calling others classes in external.jar file. the external.jar and myClass.class are both in my classpath, however java is not able to found the jar
|
| Executable Jar not behaving same as in debug (eclipse ide) | 19 Sep 2006 22:09 GMT | 3 |
I have built an applicaiton anthe Eclipse 3.2 IDE and having run through it in debug mode the code all runs fine. I am however having serious problems with the code once I have placed it in an executable JAR file. When I run the applicaiton it seems as
|
| Mathematics and internationalization | 19 Sep 2006 22:07 GMT | 4 |
I would like to make a Java application unicode mathematics enabled. How does internationalization support this endeavor? If it does not, what features of the JDK would make it possible? Sincerely,
|
| tomcat redirect localhost | 19 Sep 2006 21:29 GMT | 6 |
I'm working with an application that uses apache tomcat to serve the website. I've installed the application and tomcat on a Windows 2003 server and everything is working fine. I do not have Apache or IIS installed on the server. What I was trying to figure out is how to
|
| Java generic | 19 Sep 2006 20:26 GMT | 3 |
I have a class: public class MyList<T> implements MyListInterface<T> { public void add(T elem) { ... } public T get(int i) { ... }
|
| image processing - alpha | 19 Sep 2006 19:56 GMT | 2 |
If two images with opacity 50% place over another, how to calculate the final RGB? thanks from Peter (cmk28@hotmail.com)
|
| Migrating to WTP from MyEclipse | 19 Sep 2006 17:52 GMT | 3 |
We are trying to migrate from MyEclipse to WTP. I was looking for suggestions on how to go about this. We are currently using Eclipse 3.1.2 and MyEclipse 4.1.1. We would like to migrate to WTP 1.0.3. Has anyone done this? I was thinking of either unistalling MyEclipse
|
| How to cast a String to an object reference? | 19 Sep 2006 16:54 GMT | 6 |
I have a Person class already. Now I have a String: public class Person() { void sayHello()
|
| JColorchooser - Locale | 19 Sep 2006 16:51 GMT | 4 |
On application startup I set a different locale from JVM. JColorChooser show strings in JVM default locale. How can set the right language in JColorChooser whitout change dhe default JVM language?
|