Chris Nava

1,814
Reputation
160 views

Registered User

Name Chris Nava
Member for 1 year
Seen yesterday
Website
Location
Age
1d
answered XML parsing problems
2d
comment Log4J – Runtime variable substitution
You can't use ${file_pattern} to reference a value from a properties file outside the properties file. In code you need to use java variables. Check to see if Log4j exposes its properties and if it does you will not need to read the file yourself. If not then you are correct re: the Properties class.
Nov
16
comment How do I in java add a stacktrace to my debugging printout
Use logging. Printing to stdout/stderr should only be done by OS utilities and "Hello World" apps.
Nov
16
comment How do I in java add a stacktrace to my debugging printout
+1 for not using stdout/stderr
Nov
15
awarded  Yearling
Nov
13
accepted How to import an already checked out svn repository into Eclipse?
Nov
12
comment Is it possible to list available TimeZones by Locale in Java?
+1 for working example code.
Nov
9
answered How to import an already checked out svn repository into Eclipse?
Nov
8
comment From Java code to UML diagram
You're welcome. I should note that dragging multiple classes at once onto a diagram will connect the class images with arrows. Adding them on at a time will not.
Nov
7
accepted From Java code to UML diagram
Nov
6
answered From Java code to UML diagram
Nov
4
comment Escaping an apostrophe in Java
+1 for XKCD reference xkcd.com/327
Nov
3
comment How does JVM deal with duplicate JARs of different versions
In general this is correct. However, it depends on the implementation of the classloader. For example, when loading classes within a web framework the deployed jar/war/ear/sar files may be checked before the official classpath.
Oct
27
comment How to set up maven for two separate projects that depend on the same jar.
You may also want to read up on _SNAPSHOT versions. Using a snapshot version in your POM allows you to tell maven to get a fresh copy of the .jar (without upping the version number) each time you do a build. Be sure to remove the _SNAPSHOT for your final release.
Oct
26
answered How to set up maven for two separate projects that depend on the same jar.
Oct
26
comment What is the error in this string loop?
Also, unless you want to start at the second to last character, use (int index = len-1 ...
Oct
20
answered problem while compiling java code on network drive, it creating class files in lowercase
Oct
16
comment Design of an Alternative (Fluent?) Interface for Regular Expressions
No chance of regexes becoming a thing of the past any time soon. They are far too useful for text parsing and there is no good alternative.
Oct
14
answered While Copying plist to somewhere else filetype getting changed
Oct
6
comment Copy polygon to new location
Also '= new Polygon();' is redundant given the next line. There's no need to create a new polygon before cloning the original.
Oct
5
comment How to set build paths automatically in Eclipse
Use the "user library" feature. It allows each user to configure the path to the named library locally. the .classpath just features the name of the library.
Oct
2
accepted How to find out which is the most widely used programming tool for a given purpose?
Sep
30
comment Document java code
We have a coder at work who exclusively uses automatically generated documentation.... I HATE seeing /** Sets the user name */ public void setUserName(... it's useless and infuriating to have the comments talk down to me without providing any helpful information.
Sep
25
comment How many columns are too many for a sql 2005 table?
"If the user adds the field" indicates to me that it would be null otherwise. Is this field list dynamic? Will you be adding columns to support adding fields? Then a 1 to many relationship is in order.
Sep
22
comment Compacting HTTP Response Headers?
I don't think "compressing" the header is possible but trimming out unnecessary fields or shortening the return values may be doable. Check your server documentation for ways to configure the header fields.
Sep
18
answered How can i check out just the trunks of multiple projects from the same repository.
Sep
16
comment What is the most elegant solution to managing various Java external libraries?
The maven plugins don't require yuo to use the pom.xml wizard. The built in editors include a "source" tab that lets you edit the xml directly. IAM even lets you set the source tab as the default tab.
Sep
16
comment How do you know there may be an exception?
You are correct. edited.
Sep
16
revised How do you know there may be an exception?
com.sun is unstalbe not javax
Sep
15
answered How do you know there may be an exception?
Sep
11
answered How to put the BarCode reader/scanner output in textarea of form developed in swing Java
Sep
11
answered Enabling logging of a third party component
Sep
7
comment How do I build and distribute my Java project?
I agree that it's easy to move an existing (simple) project into maven. Simple create a new java project with the maven tool and drag in your sources. BUT, you will need to install the Eclipse integration first (there are two options - m2eclipse or IAM) AND both are not entirely bug free at this point.
Aug
27
accepted Enforcing source control
Aug
26
comment How can I make eclipse’s autoformatter ignore a section of code?
Wanted: Eclipse @AutoFormatIgnore annotation!
Aug
26
comment How can I make eclipse’s autoformatter ignore a section of code?
Eclipse also loves to wreck inline SQL/HTML that i carefully wrap and space out for readability.
Aug
22
answered Versioned Serialization in Java
Aug
18
comment Storing passwords for batch jobs
Why the down vote? Something inaccurate?
Aug
18
comment Additions to the Java core since 1.3?
The Java 2 Mobile Edition is a stripped down version of Java for Mobile devices (phones and PDAs mostly.) You will need two books. A basic Java introduction and one on J2ME. java.sun.com/javame/index.jsp
Aug
1
answered connection between applet on network
Jul
31
answered Storing passwords for batch jobs
Jul
27
comment Programmatically determine what JDK/JRE’s are installed on my box
Suggest you limit your search to C:\Program Files\ and the %PATH% environment variable in addition to the two variables listed above.
Jul
27
comment Programmatically determine what JDK/JRE’s are installed on my box
An exhaustive search would require searching all hard drives for the files java.exe or javac.exe (assuming windows) which could take a lot of time.
Jul
24
answered Why is capitalising class names in Java (and others) only a suggestion and not a rule?
Jul
18
comment Version numbers is 1.13 > 1.2?
Version numbers often show up in the file names of programs or libraries. Zero padding them makes the file browser sort them properly. I rarely have a reason to do math with version numbers so storing them as strings makes more sense to me.
Jul
14
revised Creating a separate Folder in the same package… [ECLIPSE]
Added FYI section
Jul
14
answered Creating a separate Folder in the same package… [ECLIPSE]
Jul
14
comment svn: replace trunk with branch
Sorry. The spelling made it look like I was referring to a specific tool (edited). Actually, most SVN GUI tools should have a repository browser feature. FYI: I use tortoise tortoisesvn.tigris.org
Jul
14
revised svn: replace trunk with branch
Capital letter made it look like I was refering to a specific tool.
Jul
10
comment What are the Pros/Cons of Annotations (non-compiler) compared to xml config files
Annotations have the advantage of being attached to the code. So it's less likely that they will get out of sync than a separate file. Be sure whatever options are in a separate file are thoroughly covered with unit tests. That said, Your best bet is to head the advice above.