-1
votes
1answer
137 views
The Java BigDecimal vs The Financial Mans - “The 1 cent problem”
I have this problem: The financial mans says: "Error of your programation".
The official table of values and final calc from financial is
base % total value
667.63 - …
23
votes
14answers
366 views
When is a Java method name too long?
In the last weeks I've seen some guys using really long names for a Method or Class (50 characters), this is usually under the premise that it improves readability, my opinion is that a long name like …
2
votes
5answers
49 views
What is the purpose of Serialization in Java?
I have read quite a number of articles on Serialization and how it is so nice and great but none of the arguments were convincing enough. I am wondering if someone can really tell me what is it that …
0
votes
3answers
61 views
Can Regular Expressions Achieve This?
Hi, I'm trying to split a string into tokens (via regular expressions)
in the following way:
Example #1
input string: 'hello'
first token: '
second token: hello
third token: '
Example #2
input …
5
votes
12answers
210 views
Protection of code from its own developers
Perhaps the most obvious way of protecting a company's intellectual property from its own developers seems to be an NDA - Non Disclosure Agreement. Effectiveness of this approach may vary, depending …
0
votes
3answers
50 views
MD5 Hashes failing for large Strings
I'm making a MD5 hash of a response, and then signing it with a shared secret.
For most calls this works, but strangely fails on the only two calls that bring a lot of content in the body.
Can this …
1
vote
4answers
45 views
Regular Expressions to insert “\r” every n characters in a line and before a complete word (basically a wordwrap feature)
I'm new to JavaScript and regular expression. I'm trying to automatically format a text document to specific number of characters per line or put a "\r" before the word.
This is functionally similar …
1
vote
2answers
35 views
Is using a root persistent class or base persistable object an architecture smell?
One of the major gripes voiced by the Alt.Net community against the Microsoft Entity Framework is that it forces you to use a Base Persistable Object for everything being stored in the database. I …
3
votes
3answers
153 views
I Use Generics, But Not This Class<T> thing!
I am trying to call this method to concat two arrays using Google Collections
public static <T> T[] concat(T[] first,
T[] second,
…
17
votes
11answers
371 views
Is this an abuse of try/finally?
Given that multiple return statements are acceptable (I disagree, but let us digress), I'm looking for a more acceptable way to achieve the following behavior:
Option A: multiple returns, repeated …
13
votes
9answers
322 views
What does it mean to have “the best tools money can buy” ?
Hello everyone,
In my company (3/12 on the Joel test) we have access to free software only, so I was wondering : in the Java EE world, what are the best tools money can buy ?
For instance, i was …
3
votes
4answers
83 views
How to avoid crazy naming conventions?
Is it common to name an assembly one name, name a folder inside of the assembly another and then
start to carry those names into the classes inside of those folders? For example:
Project.Presenter
…
0
votes
2answers
15 views
Where can I learn more about parsing text in Java?
I'm in a Data Structures class (in Java) this semester, but we're doing a lot of parsing on text files to populate the structures we design. The focus is on the structures themselves, not on parsing …
0
votes
1answer
14 views
Java - Thread Synchronization in a web app
I have a web app where I load components lazily. There is a lot of
static Bla bla;
...
if(bla == null)
bla = new Bla();
spread throughout the code. What do I need to do to make sure …
7
votes
6answers
86 views
Where to handle an Exception
Hey guys,
I'm currently working on a project and I've come upon a bit of a head scratcher. I've been programming in Java for about two years, and I've covered exceptions, but never properly …
