To what extent can Java be written in Chinese? http://java.sun.com/docs/books/jls/second_edition/html/lexical.doc.html I already have this link, and these seems to indicate that the only internationalization of the Java language pertains to identifiers. From this document it looks like no local (non ASCII) punctuation or local (non ASCII) decimal digits... 26 May 2010 21:21
JavaSE/EE + Tomcat 6 + Windows service on 64 bit Hello, sorry for x-post, but clj.help has become rather low activity. I set up a new computer with Windows 7 64 bit and I am wondering about which downloads I need for Java development. I need the following components: JavaSE JavaEE (5) Ant Tomcat 6 I started by downloading JDK 32 bit, I thought it wou... 22 May 2010 20:21
Another JUnit scenario What is a good JUnit test for a method that takes no input parameters, throws no exceptions, and returns no values but only writes information to a console? In addition to the getLocales() method which we're discussing in another thread, I have a displayLocales() method which begins by calling getLocales (), ... 27 May 2010 13:42
Design question - methods calling methods Is it bad design for any reason for methods in one class to call other methods in the same class to do some of their work for them? I'm pretty sure the answer is no but this is just a sanity check to make sure I'm not forgetting an important factor. The situation that inspired the question is getLocales() meth... 28 May 2010 23:35
Design Questions about static factory classes In the course of developing test cases for some of my classes, particularly the classes that are static factories, I've developed some confusion about localization. Basically, I'm trying to figure out when I want to have separate constructor and getInstance() methods First, I hope we can all agree that, in a... 27 May 2010 15:55
Eclipse question re dependencies Is there a way to determine the class dependencies in my code within Eclipse? For example, one of my projects makes use of various classes within a "Common" project along the way. What is the simplest way to determine the specific classes from "Common" (and any other projects outside my own) that my project ... 22 May 2010 17:06
Need help designing some JUnit tests I'm getting more and more comfortable with JUnit after a long absence from it but I'm still struggling with composing tests for some situations. If anyone can help with any of these situations, I'd love to hear your suggestions. -------------------------------- Scenario 1 - Moving Targets What is the bes... 30 May 2010 12:10
what is a phantom read ? Here is a Phantom read example I read: /* Query 1 */ SELECT * FROM users WHERE age BETWEEN 10 AND 30; return 2 records. /* Query 2 */ INSERT INTO users VALUES ( 3, 'Bob', 27 ); COMMIT; /* Query 1 */ SELECT * FROM users WHERE age BETWEEN 10 AND 30; return 3 records. see It seems ... 20 Jun 2010 12:21
consuming the web service Hi, I've been tasked with building an application that will consume this web service: http://epfr.com/epfrdata.asmx?WSDL I know java and tomcat, but I know nothing about SOAP and WSDL. I hoping that someone will point me in the right direction for approaching this task? Is axis2 the right tool to look a... 21 May 2010 17:13
A little afternoon source code On 19-05-2010 11:16, Stefan Ram wrote: Tom Anderson<twic(a)urchin.earth.li> writes: private static String header = "" + "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n" + "<initech:tps-report><initech:coversheet> etc"; (After having read this, and also having read some of the response... 19 May 2010 20:29 |